blob: ebb7f187aea5ba217443f853b11445eba780ab7a [file] [log] [blame]
Nick Pelly0b6955a2009-05-26 19:13:43 -07001/*
2 * Copyright (C) 2009 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.bluetooth;
18
Nick Pelly24bb9b82009-10-02 20:34:18 -070019import android.os.Handler;
zzy3b147b72012-04-03 19:48:32 -070020import android.os.ParcelUuid;
Casper Bonde238e0f92015-04-09 09:24:48 +020021import android.util.Log;
Nick Pelly24bb9b82009-10-02 20:34:18 -070022
Nick Pelly0b6955a2009-05-26 19:13:43 -070023import java.io.Closeable;
24import java.io.IOException;
25
26/**
Nick Pelly45e27042009-08-19 11:00:00 -070027 * A listening Bluetooth socket.
Nick Pelly0b6955a2009-05-26 19:13:43 -070028 *
Nick Pelly45e27042009-08-19 11:00:00 -070029 * <p>The interface for Bluetooth Sockets is similar to that of TCP sockets:
30 * {@link java.net.Socket} and {@link java.net.ServerSocket}. On the server
31 * side, use a {@link BluetoothServerSocket} to create a listening server
Scott Main9fab0ae2009-11-03 18:17:59 -080032 * socket. When a connection is accepted by the {@link BluetoothServerSocket},
33 * it will return a new {@link BluetoothSocket} to manage the connection.
Jake Hambyf51eada2010-09-21 13:39:53 -070034 * On the client side, use a single {@link BluetoothSocket} to both initiate
Scott Main9fab0ae2009-11-03 18:17:59 -080035 * an outgoing connection and to manage the connection.
Nick Pelly0b6955a2009-05-26 19:13:43 -070036 *
Scott Main9fab0ae2009-11-03 18:17:59 -080037 * <p>The most common type of Bluetooth socket is RFCOMM, which is the type
38 * supported by the Android APIs. RFCOMM is a connection-oriented, streaming
39 * transport over Bluetooth. It is also known as the Serial Port Profile (SPP).
Nick Pelly0b6955a2009-05-26 19:13:43 -070040 *
Jake Hambyf51eada2010-09-21 13:39:53 -070041 * <p>To create a listening {@link BluetoothServerSocket} that's ready for
Scott Main9fab0ae2009-11-03 18:17:59 -080042 * incoming connections, use
43 * {@link BluetoothAdapter#listenUsingRfcommWithServiceRecord
44 * BluetoothAdapter.listenUsingRfcommWithServiceRecord()}. Then call
45 * {@link #accept()} to listen for incoming connection requests. This call
46 * will block until a connection is established, at which point, it will return
Scott Main6d95fc02009-11-19 17:00:19 -080047 * a {@link BluetoothSocket} to manage the connection. Once the {@link
48 * BluetoothSocket} is acquired, it's a good idea to call {@link #close()} on
49 * the {@link BluetoothServerSocket} when it's no longer needed for accepting
50 * connections. Closing the {@link BluetoothServerSocket} will <em>not</em>
51 * close the returned {@link BluetoothSocket}.
Nick Pelly45e27042009-08-19 11:00:00 -070052 *
Scott Main9fab0ae2009-11-03 18:17:59 -080053 * <p>{@link BluetoothServerSocket} is thread
Nick Pelly45e27042009-08-19 11:00:00 -070054 * safe. In particular, {@link #close} will always immediately abort ongoing
Scott Main9fab0ae2009-11-03 18:17:59 -080055 * operations and close the server socket.
Nick Pellycf440592009-09-08 10:12:06 -070056 *
Scott Main9fab0ae2009-11-03 18:17:59 -080057 * <p class="note"><strong>Note:</strong>
58 * Requires the {@link android.Manifest.permission#BLUETOOTH} permission.
59 *
Joe Fernandez3aef8e1d2011-12-20 10:38:34 -080060 * <div class="special reference">
61 * <h3>Developer Guides</h3>
62 * <p>For more information about using Bluetooth, read the
Marie Janssen382871b2016-06-20 10:26:31 -070063 * <a href="{@docRoot}guide/topics/connectivity/bluetooth.html">Bluetooth</a> developer guide.</p>
Joe Fernandez3aef8e1d2011-12-20 10:38:34 -080064 * </div>
65 *
Scott Main9fab0ae2009-11-03 18:17:59 -080066 * {@see BluetoothSocket}
Nick Pelly0b6955a2009-05-26 19:13:43 -070067 */
68public final class BluetoothServerSocket implements Closeable {
Nick Pelly71c3c782009-09-02 11:51:35 -070069
Casper Bonde238e0f92015-04-09 09:24:48 +020070 private static final String TAG = "BluetoothServerSocket";
Stanley Tnge48468d2017-11-22 16:04:40 -080071 private static final boolean DBG = false;
Nick Pellybd022f42009-08-14 18:33:38 -070072 /*package*/ final BluetoothSocket mSocket;
Nick Pelly24bb9b82009-10-02 20:34:18 -070073 private Handler mHandler;
74 private int mMessage;
Casper Bonde238e0f92015-04-09 09:24:48 +020075 private int mChannel;
Nick Pelly0b6955a2009-05-26 19:13:43 -070076
77 /**
78 * Construct a socket for incoming connections.
Jack Hea355e5e2017-08-22 16:06:54 -070079 *
80 * @param type type of socket
81 * @param auth require the remote device to be authenticated
Nick Pelly6a669fa2009-06-02 15:57:18 -070082 * @param encrypt require the connection to be encrypted
Jack Hea355e5e2017-08-22 16:06:54 -070083 * @param port remote port
84 * @throws IOException On error, for example Bluetooth not available, or insufficient
85 * privileges
Nick Pelly0b6955a2009-05-26 19:13:43 -070086 */
Nick Pellybd022f42009-08-14 18:33:38 -070087 /*package*/ BluetoothServerSocket(int type, boolean auth, boolean encrypt, int port)
Nick Pelly6a669fa2009-06-02 15:57:18 -070088 throws IOException {
Ben Dodson6d8b80d2011-07-08 14:36:42 -070089 mChannel = port;
Nick Pelly16fb88a2009-10-07 07:44:03 +020090 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, port, null);
Casper Bonde23284232015-04-21 13:12:05 +020091 if (port == BluetoothAdapter.SOCKET_CHANNEL_AUTO_STATIC_NO_SDP) {
92 mSocket.setExcludeSdp(true);
93 }
94 }
95
96 /**
97 * Construct a socket for incoming connections.
Jack Hea355e5e2017-08-22 16:06:54 -070098 *
99 * @param type type of socket
100 * @param auth require the remote device to be authenticated
Casper Bonde23284232015-04-21 13:12:05 +0200101 * @param encrypt require the connection to be encrypted
Jack Hea355e5e2017-08-22 16:06:54 -0700102 * @param port remote port
103 * @param mitm enforce man-in-the-middle protection for authentication.
Casper Bonde3b3d1fe2015-05-08 14:32:24 +0200104 * @param min16DigitPin enforce a minimum length of 16 digits for a sec mode 2 connection
Jack Hea355e5e2017-08-22 16:06:54 -0700105 * @throws IOException On error, for example Bluetooth not available, or insufficient
106 * privileges
Casper Bonde23284232015-04-21 13:12:05 +0200107 */
108 /*package*/ BluetoothServerSocket(int type, boolean auth, boolean encrypt, int port,
Casper Bonde3b3d1fe2015-05-08 14:32:24 +0200109 boolean mitm, boolean min16DigitPin)
Casper Bonde23284232015-04-21 13:12:05 +0200110 throws IOException {
111 mChannel = port;
Casper Bonde3b3d1fe2015-05-08 14:32:24 +0200112 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, port, null, mitm,
113 min16DigitPin);
Jack Hea355e5e2017-08-22 16:06:54 -0700114 if (port == BluetoothAdapter.SOCKET_CHANNEL_AUTO_STATIC_NO_SDP) {
Casper Bonde238e0f92015-04-09 09:24:48 +0200115 mSocket.setExcludeSdp(true);
116 }
Nick Pelly0b6955a2009-05-26 19:13:43 -0700117 }
118
119 /**
zzy3b147b72012-04-03 19:48:32 -0700120 * Construct a socket for incoming connections.
Jack Hea355e5e2017-08-22 16:06:54 -0700121 *
122 * @param type type of socket
123 * @param auth require the remote device to be authenticated
zzy3b147b72012-04-03 19:48:32 -0700124 * @param encrypt require the connection to be encrypted
Jack Hea355e5e2017-08-22 16:06:54 -0700125 * @param uuid uuid
126 * @throws IOException On error, for example Bluetooth not available, or insufficient
127 * privileges
zzy3b147b72012-04-03 19:48:32 -0700128 */
129 /*package*/ BluetoothServerSocket(int type, boolean auth, boolean encrypt, ParcelUuid uuid)
130 throws IOException {
131 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, -1, uuid);
Casper Bonde238e0f92015-04-09 09:24:48 +0200132 // TODO: This is the same as mChannel = -1 - is this intentional?
zzy3b147b72012-04-03 19:48:32 -0700133 mChannel = mSocket.getPort();
134 }
135
136
137 /**
Nick Pelly0b6955a2009-05-26 19:13:43 -0700138 * Block until a connection is established.
Nick Pelly45e27042009-08-19 11:00:00 -0700139 * <p>Returns a connected {@link BluetoothSocket} on successful connection.
140 * <p>Once this call returns, it can be called again to accept subsequent
141 * incoming connections.
142 * <p>{@link #close} can be used to abort this call from another thread.
Jack Hea355e5e2017-08-22 16:06:54 -0700143 *
Nick Pelly45e27042009-08-19 11:00:00 -0700144 * @return a connected {@link BluetoothSocket}
Jack Hea355e5e2017-08-22 16:06:54 -0700145 * @throws IOException on error, for example this call was aborted, or timeout
Nick Pelly0b6955a2009-05-26 19:13:43 -0700146 */
147 public BluetoothSocket accept() throws IOException {
148 return accept(-1);
149 }
150
151 /**
152 * Block until a connection is established, with timeout.
Nick Pelly45e27042009-08-19 11:00:00 -0700153 * <p>Returns a connected {@link BluetoothSocket} on successful connection.
154 * <p>Once this call returns, it can be called again to accept subsequent
155 * incoming connections.
156 * <p>{@link #close} can be used to abort this call from another thread.
Jack Hea355e5e2017-08-22 16:06:54 -0700157 *
Nick Pelly45e27042009-08-19 11:00:00 -0700158 * @return a connected {@link BluetoothSocket}
Jack Hea355e5e2017-08-22 16:06:54 -0700159 * @throws IOException on error, for example this call was aborted, or timeout
Nick Pelly0b6955a2009-05-26 19:13:43 -0700160 */
161 public BluetoothSocket accept(int timeout) throws IOException {
Nick Pelly71c3c782009-09-02 11:51:35 -0700162 return mSocket.accept(timeout);
Nick Pelly0b6955a2009-05-26 19:13:43 -0700163 }
164
165 /**
Nick Pelly45e27042009-08-19 11:00:00 -0700166 * Immediately close this socket, and release all associated resources.
167 * <p>Causes blocked calls on this socket in other threads to immediately
Nick Pelly0b6955a2009-05-26 19:13:43 -0700168 * throw an IOException.
Scott Main6d95fc02009-11-19 17:00:19 -0800169 * <p>Closing the {@link BluetoothServerSocket} will <em>not</em>
170 * close any {@link BluetoothSocket} received from {@link #accept()}.
Nick Pelly0b6955a2009-05-26 19:13:43 -0700171 */
172 public void close() throws IOException {
Stanley Tnge48468d2017-11-22 16:04:40 -0800173 if (DBG) Log.d(TAG, "BluetoothServerSocket:close() called. mChannel=" + mChannel);
Nick Pelly24bb9b82009-10-02 20:34:18 -0700174 synchronized (this) {
175 if (mHandler != null) {
176 mHandler.obtainMessage(mMessage).sendToTarget();
177 }
178 }
Nick Pelly71c3c782009-09-02 11:51:35 -0700179 mSocket.close();
Nick Pelly0b6955a2009-05-26 19:13:43 -0700180 }
Nick Pelly24bb9b82009-10-02 20:34:18 -0700181
Jack Hea355e5e2017-08-22 16:06:54 -0700182 /*package*/
183 synchronized void setCloseHandler(Handler handler, int message) {
Nick Pelly24bb9b82009-10-02 20:34:18 -0700184 mHandler = handler;
185 mMessage = message;
186 }
Jack Hea355e5e2017-08-22 16:06:54 -0700187
Jack He2992cd02017-08-22 21:21:23 -0700188 /*package*/ void setServiceName(String serviceName) {
189 mSocket.setServiceName(serviceName);
zzy3b147b72012-04-03 19:48:32 -0700190 }
Casper Bonde238e0f92015-04-09 09:24:48 +0200191
Ben Dodson6d8b80d2011-07-08 14:36:42 -0700192 /**
193 * Returns the channel on which this socket is bound.
Jack Hea355e5e2017-08-22 16:06:54 -0700194 *
Ben Dodson6d8b80d2011-07-08 14:36:42 -0700195 * @hide
196 */
197 public int getChannel() {
198 return mChannel;
199 }
Casper Bonde238e0f92015-04-09 09:24:48 +0200200
201 /**
Stanley Tnge48468d2017-11-22 16:04:40 -0800202 * Returns the assigned dynamic protocol/service multiplexer (PSM) value for the listening L2CAP
203 * Connection-oriented Channel (CoC) server socket. This server socket must be returned by the
204 * {#link BluetoothAdapter.listenUsingL2capCoc(int)} or {#link
205 * BluetoothAdapter.listenUsingInsecureL2capCoc(int)}. The returned value is undefined if this
206 * method is called on non-L2CAP server sockets.
207 *
208 * @return the assigned PSM or LE_PSM value depending on transport
209 * @hide
210 */
211 public int getPsm() {
212 return mChannel;
213 }
214
215 /**
Casper Bonde238e0f92015-04-09 09:24:48 +0200216 * Sets the channel on which future sockets are bound.
217 * Currently used only when a channel is auto generated.
218 */
219 /*package*/ void setChannel(int newChannel) {
220 /* TODO: From a design/architecture perspective this is wrong.
221 * The bind operation should be conducted through this class
222 * and the resulting port should be kept in mChannel, and
223 * not set from BluetoothAdapter. */
Jack Hea355e5e2017-08-22 16:06:54 -0700224 if (mSocket != null) {
225 if (mSocket.getPort() != newChannel) {
226 Log.w(TAG, "The port set is different that the underlying port. mSocket.getPort(): "
227 + mSocket.getPort() + " requested newChannel: " + newChannel);
Casper Bonde238e0f92015-04-09 09:24:48 +0200228 }
229 }
230 mChannel = newChannel;
231 }
232
233 @Override
234 public String toString() {
235 StringBuilder sb = new StringBuilder();
236 sb.append("ServerSocket: Type: ");
Jack Hea355e5e2017-08-22 16:06:54 -0700237 switch (mSocket.getConnectionType()) {
238 case BluetoothSocket.TYPE_RFCOMM: {
Casper Bonde238e0f92015-04-09 09:24:48 +0200239 sb.append("TYPE_RFCOMM");
240 break;
241 }
Jack Hea355e5e2017-08-22 16:06:54 -0700242 case BluetoothSocket.TYPE_L2CAP: {
Casper Bonde238e0f92015-04-09 09:24:48 +0200243 sb.append("TYPE_L2CAP");
244 break;
245 }
Stanley Tnge48468d2017-11-22 16:04:40 -0800246 case BluetoothSocket.TYPE_L2CAP_LE: {
247 sb.append("TYPE_L2CAP_LE");
248 break;
249 }
Jack Hea355e5e2017-08-22 16:06:54 -0700250 case BluetoothSocket.TYPE_SCO: {
Casper Bonde238e0f92015-04-09 09:24:48 +0200251 sb.append("TYPE_SCO");
252 break;
253 }
254 }
255 sb.append(" Channel: ").append(mChannel);
256 return sb.toString();
257 }
Nick Pelly0b6955a2009-05-26 19:13:43 -0700258}