Project

General

Profile

D-Link DWM-222 stick » History » Version 4

domi, 08/15/2018 07:17 PM

1 1 domi
h1. D-Link DWM-222 stick
2
3
!{width:300px}dwm222_pic.jpg!
4
5 3 domi
This stick is available at multiple operators and it is quite cheap. If you want to get into Linux-based Qualcomm dongles that are easier to attach to your laptop than Quectel modems (no messing around with mini-PCIe to USB adapters and what not) it might be a way to go.
6 4 domi
7 1 domi
*WARNING!
8
Current version of the DWM-222 does NOT expose ADB, so accessing the underlying Linux is currently not possible! HOWEVER there might be ways to enable this functionality, so keep reading, but BE AWARE BEFORE PUCHASING!*
9
10
It is just a D-Link branded version of cheaper dongles made in China. Some of them are WiFi access points with LTE backhaul using [[QCMAP]].
11
Example of devices that are closely related:
12
* PTCL Charji Wingle R660
13
* (?)D-Link DWR 901 (unsure, FIXME)
14
15
16
h2. Hardware
17
18
!{width:500px}pcb_pic.jpg!
19
20
Opening the stick requires just removing the back cover (which reveals the standard size SIM slot and the microSD card reader), then unscrewing the 3 screws.
21
The stick is based on the Qualcomm MDM9225 chipset. It is closely related to the MDM9625 apparently (based on the firmware analysis).
22
There are two antenna connectors (U.FL) exposed on the PCB.
23
24
h2. Software
25
26
The dongle is a typical USB WWAN modem. It requires usb_modeswitch to change from mass_storage mode (enables installation of driver) to modem mode.
27
Mass storage mode USB id: *2001:ab00*
28
WWAN USB id: *2001:7e35*
29
30
After the switch you'll see 4 @ttyUSB@ devices appearing in @/dev@. For me these devices only started to work after telling the @option@ driver about the USB id of the device:
31
<pre>
32
echo "2001 7e35" > /sys/bus/usb-serial/drivers/option1/new_id
33
</pre>
34
35
The devices are:
36
<pre>
37
/dev/ttyUSB0  --> DIAG
38
/dev/ttyUSB1  --> AT commands
39
/dev/ttyUSB2
40
/dev/ttyUSB3
41
/dev/cdc-wdm0 --> QMI
42
</pre>
43
44
h3. Drivers
45
46
If in mass_storage mode there is a Windows driver available with D-Link Connection Manager. It basically just switches the device to modem mode, and then provides a GUI to establish a connection.
47
Surprisingly D-Link provides Linux support for the dongle. A page is dedicated to guide you through the installation. https://eu.dlink.com/uk/en/support/faq/routers/mobile-routers/how-to-install-my-dwm-222-on-ubuntu
48
However it is not recommended to follow the instructions, because the 'driver' is just a collection of bash scripts that tries to configure PPP daemon. Interestingly it has a complete collection of MCC, MNC, APN triples for all operators around the world. Based on the IMSI queried from the SIM card it tries to find the right settings and feed them to pppd.
49
50
h2. Firmware
51
52
There are 2 firmware versions available for download currently: 2.0.1 and 2.0.8. https://eu.dlink.com/uk/en/products/dwm-222-4g-lte-usb-adapter#support
53
The dongle that I had came with an older version, 1.7.9. It doesn't really work for me, so I upgraded to 2.0.8:
54
55
h3. Upgrade process
56
57
Upgrade can only be done from Windows. The file provided is a self-extracting executable. After extracting the contents it turned out to be quite interesting: a collection of executables and batch files, as well as MBN and yaffs2 images.
58
After tracing the upgrade process I've established its steps roughly:
59
60
<pre>
61
Start 1key.bat -> Installs drivers (ADB, QDLoader, Fastboot) -> Runs dl.exe -> Device goes into QDL mode -> MBN files are flashed -> Device reboots.
62
</pre>
63
64
Now comes the tricky part: the bat files tries to reboot the device into @fastboot@ mode using ADB shell. However D-Link requested ADB to be turned off for the device, so the @fastboot@ part fails. Basically you'll end up with a device that has new DSP software, but the Android part is unchanged. Fortunately the device stays operational after the failed update, only its LED is stuck on white instead of different colors/blinking.
65
So the complete upgrade cycle would look like this (based on reading the bat files):
66
67
<pre>
68
Start 1key.bat -> Installs drivers (ADB, QDLoader, Fastboot) -> Runs dl.exe -> Device goes into QDL mode -> MBN files are flashed -> Device reboots
69
-> ADB shell to reboot into fastboot mode -> Android images are flashed using fastboot (rootfs, usr) -> Device rebooted again, check if it is not stuck in bootloader -> Done.
70
</pre>
71
72
h3. Analyzing the firmware
73
74
Since it is just YAFFS2 it was easy to unpack the firmware and poke around it. No encryption/signatures/etc. was in place.
75
It is, as suspected, Linux.
76 2 domi
They supply 2 YAFFS2 images: one is the @rootfs@, the other is @/usr@
77 1 domi
78 2 domi
File list of @rootfs@
79
80 1 domi
<pre>
81
# ls -lha
82
total 84K
83
drwxr-xr-x 20 root root 4,0K aug   10 14:58 .
84
drwxr-xr-x  5 root root 4,0K aug   10 15:30 ..
85
drwxr-xr-x  2 root root 4,0K aug   10 14:58 bin
86
drwxr-xr-x  2 root root 4,0K aug   10 14:58 boot
87
-rw-r--r--  1 root root   47 aug   10 14:58 build.prop
88
drwxr-xr-x  2 root root 4,0K aug   10 14:58 cache
89
drwxr-xr-x  2 root root 4,0K aug   10 14:58 dev
90
drwxr-xr-x 30 root root 4,0K aug   10 14:58 etc
91
drwxr-xr-x  3 root root 4,0K aug   10 14:58 home
92
drwxr-xr-x  5 root root 4,0K aug   10 14:58 lib
93
lrwxrwxrwx  1 root root   12 aug   10 14:58 linuxrc -> /bin/busybox
94
drwxr-xr-x 10 root root 4,0K aug   10 14:58 media
95
drwxr-xr-x  2 root root 4,0K aug   10 14:58 mnt
96
drwxr-xr-x  2 root root 4,0K aug   10 14:58 proc
97
drwxr-xr-x  2 root root 4,0K aug   10 14:58 sbin
98
lrwxrwxrwx  1 root root   11 aug   10 14:58 sdcard -> /media/card
99
drwxr-xr-x  3 root root 4,0K aug   10 14:58 share
100
drwxr-xr-x  2 root root 4,0K aug   10 14:58 sys
101
drwxr-xr-x  2 root root 4,0K aug   10 14:58 tmp
102
drwxr-xr-x  2 root root 4,0K aug   10 14:58 usr
103
drwxr-xr-x  8 root root 4,0K aug   10 14:58 var
104
drwxr-xr-x  3 root root 4,0K aug   10 14:58 WEBSERVER
105
drwxr-xr-x  5 root root 4,0K aug   10 14:58 www
106
</pre>
107
108 2 domi
The @WEBSERVER@ and @www@ directory are there for the WiFi router versions which use a web-based interface for settings.
109 1 domi
110
I was mainly curious about ADB, so I followed the @/etc/init.d/usb@ script. It saves the USB device id of the device to a file, then based on the id it starts a bash script located in @/usr/bin/usb/compositions@
111
112
<pre>
113
ls -lha bin/usb/compositions/
114
total 228K
115
drwxr-xr-x 2 root root 4,0K aug   10 14:58 .
116
drwxr-xr-x 3 root root 4,0K aug   10 14:28 ..
117
-rw-r--r-- 1 root root 3,8K aug   10 14:28 2033
118
-rw-r--r-- 1 root root 4,0K aug   10 14:28 2034
119
-rw-r--r-- 1 root root 4,4K aug   10 14:28 2037
120
-rw-r--r-- 1 root root 3,8K aug   10 14:28 3443
121
-rw-r--r-- 1 root root 4,4K aug   10 14:28 3444
122
-rw-r--r-- 1 root root 4,4K aug   10 14:28 4030
123
-rw-r--r-- 1 root root 3,8K aug   10 14:58 7e35
124
-rw-r--r-- 1 root root 4,6K aug   10 14:28 7e35A
125
-rw-r--r-- 1 root root 4,4K aug   10 14:28 7e37
126
-rw-r--r-- 1 root root 4,4K aug   10 14:28 7e38
127
-rw-r--r-- 1 root root 4,4K aug   10 14:28 7e39
128
-rw-r--r-- 1 root root 4,4K aug   10 14:28 7e3c
129
-rw-r--r-- 1 root root 3,8K aug   10 14:28 7e3d
130
-rw-r--r-- 1 root root 2,3K aug   10 14:28 9002
131
-rw-r--r-- 1 root root 2,2K aug   10 14:28 901C
132
-rw-r--r-- 1 root root 2,8K aug   10 14:28 901D
133
-rw-r--r-- 1 root root 3,4K aug   10 14:28 9021
134
-rw-r--r-- 1 root root 3,4K aug   10 14:28 9022
135
-rw-r--r-- 1 root root 2,7K aug   10 14:28 9024
136
-rw-r--r-- 1 root root 3,6K aug   10 14:28 9025
137
-rw-r--r-- 1 root root 3,5K aug   10 14:28 9026
138
-rw-r--r-- 1 root root 2,7K aug   10 14:28 902A
139
-rw-r--r-- 1 root root 2,7K aug   10 14:28 902B
140
-rw-r--r-- 1 root root 2,7K aug   10 14:28 902C
141
-rw-r--r-- 1 root root 2,8K aug   10 14:28 902D
142
-rw-r--r-- 1 root root 3,9K aug   10 14:28 902E
143
-rw-r--r-- 1 root root 3,3K aug   10 14:28 9043
144
-rw-r--r-- 1 root root 3,0K aug   10 14:28 9046
145
-rw-r--r-- 1 root root 2,4K aug   10 14:28 9047
146
-rw-r--r-- 1 root root 3,5K aug   10 14:28 9049
147
-rw-r--r-- 1 root root 2,2K aug   10 14:28 904A
148
-rw-r--r-- 1 root root 3,6K aug   10 14:28 9056
149
-rw-r--r-- 1 root root 2,7K aug   10 14:28 9057
150
-rw-r--r-- 1 root root 2,9K aug   10 14:28 9059
151
-rw-r--r-- 1 root root 3,2K aug   10 14:28 905A
152
-rw-r--r-- 1 root root 3,0K aug   10 14:28 905B
153
-rw-r--r-- 1 root root 2,2K aug   10 14:28 9060
154
-rw-r--r-- 1 root root 3,2K aug   10 14:28 9063
155
-rw-r--r-- 1 root root 4,4K aug   10 14:28 9064
156
-rw-r--r-- 1 root root 4,0K aug   10 14:28 9067
157
-rw-r--r-- 1 root root 3,0K aug   10 14:28 9083
158
-rw-r--r-- 1 root root 3,0K aug   10 14:28 9084
159
-rw-r--r-- 1 root root 3,1K aug   10 14:28 9085
160
-rw-r--r-- 1 root root  127 aug   10 14:28 empty
161
-rw-r--r-- 1 root root    2 aug   10 14:28 hsic_next
162
-rw-r--r-- 1 root root    5 aug   10 14:28 hsusb_next
163
</pre>
164
165
Looking into the file @7e35@ (the id of the D-Link device) reveals why ADB is missing - the Android USB Gadget is configured without ADB:
166
167
<pre>
168
# cat bin/usb/compositions/7e35
169
170
#!/bin/sh
171
#
172
# Copyright (c) 2012, The Linux Foundation. All rights reserved.
173
#
174
# Redistribution and use in source and binary forms, with or without
175
# modification, are permitted provided that the following conditions are met:
176
#     * Redistributions of source code must retain the above copyright
177
#       notice, this list of conditions and the following disclaimer.
178
#     * Redistributions in binary form must reproduce the above copyright
179
#       notice, this list of conditions and the following disclaimer in the
180
#       documentation and/or other materials provided with the distribution.
181
#     * Neither the name of The Linux Foundation nor the names of its
182
#       contributors may be used to endorse or promote products derived from
183
#       this software without specific prior written permission.
184
#
185
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
186
# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
187
# FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT ARE DISCLAIMED.  IN NO
188
# EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
189
# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
190
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
191
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
192
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
193
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
194
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
195
196
# DESCRIPTION: DIAG + MODEM + AT + NMEA + QMI_RMNET + ADB + Mass Storage (Android)
197
198
echo "Switching to composition number 0x7e35"
199
200
if [ "$1" = "y" ]; then
201
	num="1"
202
else
203
	num="0"
204
fi
205
206
echo 0 > /sys/class/android_usb/android$num/enable
207
if [ "$2" = "y" ]; then 
208
	echo 0xAB00 > /sys/class/android_usb/android$num/idProduct
209
	echo 0x2001 > /sys/class/android_usb/android$num/idVendor
210
	echo mass_storage > /sys/class/android_usb/android$num/functions
211
	echo 1 > /sys/class/android_usb/android$num/enable
212
else
213
	run_9x15() {
214
		echo 0x7e35 > /sys/class/android_usb/android$num/idProduct
215
		echo 0x2001 > /sys/class/android_usb/android$num/idVendor
216
		echo diag > /sys/class/android_usb/android0/f_diag/clients
217
		echo smd,smd,tty > /sys/class/android_usb/android0/f_serial/transports
218
		echo SMD,BAM2BAM > /sys/class/android_usb/android0/f_rmnet/transports
219
		echo diag,serial,rmnet,mass_storage > /sys/class/android_usb/android$num/functions
220
 		echo 1 > /sys/class/android_usb/android$num/enable
221
  	}
222
223
	run_9x25() {
224
		echo 0x7e35 > /sys/class/android_usb/android$num/idProduct
225
		echo 0x2001 > /sys/class/android_usb/android$num/idVendor
226
		echo diag > /sys/class/android_usb/android0/f_diag/clients
227
		echo smd,smd,tty > /sys/class/android_usb/android0/f_serial/transports
228
		echo SMD,BAM2BAM_IPA > /sys/class/android_usb/android0/f_rmnet/transports
229
		echo diag,serial,rmnet,mass_storage > /sys/class/android_usb/android$num/functions
230
 		echo 1 > /sys/class/android_usb/android$num/enable
231
	}
232
233
	run_9x25_v2() {
234
		echo 0x7e35 > /sys/class/android_usb/android$num/idProduct
235
		echo 0x2001 > /sys/class/android_usb/android$num/idVendor
236
		echo 0123456789ABCDEF > /sys/class/android_usb/android$num/iSerial
237
		echo diag > /sys/class/android_usb/android0/f_diag/clients
238
		echo smd,smd,tty > /sys/class/android_usb/android0/f_serial/transports
239
		echo QTI,BAM2BAM_IPA > /sys/class/android_usb/android0/f_rmnet/transports
240
		echo diag,serial,rmnet,mass_storage > /sys/class/android_usb/android$num/functions
241
 		echo 1 > /sys/class/android_usb/android$num/enable
242
	}
243
244
	case `source /usr/bin/usb/target` in
245
		*9x15* )
246
			run_9x15 &
247
			;;
248
		*9x25* )
249
			case `cat /sys/devices/soc0/revision` in
250
				*1.0* )
251
					run_9x25 &
252
					;;
253
				*2.* )
254
					run_9x25_v2 &
255
					;;
256
				* )
257
					run_9x25 &
258
					;;
259
			esac
260
			;;
261
		* )
262
			run_9x15 &
263
			;;
264
  	esac
265
fi
266
267
</pre>
268
269 2 domi
Simple adding @adb@ to the echos should be enough, based on the other script files. So I added the string @adb@ to the right places in the file, re-packed the @usr@ YAFFS2 image just to find out that because I could not get it into fastboot mode...so if someone could find a way to put the dongle into fastboot mode then simply installing a patched firmware file would enable ADB on the device.
270 1 domi
271
So now the question arises: what kind of dongle would you need to buy that has ADB out of the box? I could tell you the USB device id of such devices:
272
273
<pre>
274
grep -r adb .
275
./905A:	echo diag,adb,usb_mbim:ecm_qc > /sys/class/android_usb/android$num/functions
276
./905A:	echo diag,adb,usb_mbim:ecm_qc > /sys/class/android_usb/android$num/functions
277
./9025:	echo diag,adb,serial,rmnet,mass_storage > /sys/class/android_usb/android$num/functions
278
./9025:	echo diag,adb,serial,rmnet,mass_storage > /sys/class/android_usb/android$num/functions
279
./9025:	echo diag,adb,serial,rmnet,mass_storage > /sys/class/android_usb/android$num/functions
280
./9022:	echo diag,adb,rmnet > /sys/class/android_usb/android$num/functions
281
./9022:	echo diag,adb,rmnet > /sys/class/android_usb/android$num/functions
282
./9022:	echo diag,adb,rmnet > /sys/class/android_usb/android$num/functions
283
./9059:	echo rndis_qc,diag,adb:ecm_qc > /sys/class/android_usb/android$num/functions
284
./9059:	echo rndis,diag,adb:ecm_qc > /sys/class/android_usb/android$num/functions
285
./9064:	echo diag,adb,serial,rmnet:ecm_qc:usb_mbim > /sys/class/android_usb/android$num/functions
286
./9064:	echo diag,adb,serial,rmnet:ecm:usb_mbim > /sys/class/android_usb/android$num/functions
287
./9064:	echo diag,adb,serial,rmnet:ecm_qc:usb_mbim > /sys/class/android_usb/android$num/functions
288
./9046:	echo diag,adb,serial,rmnet,mass_storage > /sys/class/android_usb/android$num/functions
289
./9046:	echo diag,adb,serial,rmnet,mass_storage > /sys/class/android_usb/android$num/functions
290
./9024:	echo rndis_qc,adb > /sys/class/android_usb/android$num/functions
291
./9024:	echo rndis,adb > /sys/class/android_usb/android$num/functions
292
./9049:	echo diag,adb,serial,rmnet,mass_storage,qdss > /sys/class/android_usb/android$num/functions
293
./9049:	echo diag,adb,serial,rmnet,mass_storage,qdss > /sys/class/android_usb/android$num/functions
294
./9049:	echo diag,adb,serial,rmnet,mass_storage,qdss > /sys/class/android_usb/android$num/functions
295
./902D:	echo rndis_qc,diag,adb > /sys/class/android_usb/android$num/functions
296
./902D:	echo rndis,diag,adb > /sys/class/android_usb/android$num/functions
297
./901D:	echo diag,adb > /sys/class/android_usb/android$num/functions
298
./901D:	echo diag,adb > /sys/class/android_usb/android$num/functions
299
./9084:	echo diag,qdss,adb,rmnet > /sys/class/android_usb/android$num/functions
300
./9084:	echo diag,qdss,adb,rmnet > /sys/class/android_usb/android$num/functions
301
./902B:	echo rndis_qc,adb,mass_storage > /sys/class/android_usb/android$num/functions
302
./902B:	echo rndis,adb,mass_storage > /sys/class/android_usb/android$num/functions
303
./9085:	echo diag,adb,usb_mbim,gps > /sys/class/android_usb/android$num/functions
304
./9085:	echo diag,adb,usb_mbim,gps > /sys/class/android_usb/android$num/functions
305
./2034:	echo rndis_qc,diag,serial,adb,mass_storage > /sys/class/android_usb/android$num/functions
306
./2034:	echo rndis,diag,serial,adb,mass_storage > /sys/class/android_usb/android$num/functions
307
./2034:	echo rndis,diag,serial,adb,mass_storage > /sys/class/android_usb/android$num/functions
308
./9060:	echo diag,qdss,adb > /sys/class/android_usb/android$num/functions
309
./9056:	echo diag,adb,serial,rmnet,mass_storage,audio > /sys/class/android_usb/android$num/functions
310
./9056:	echo diag,adb,serial,rmnet,mass_storage,audio > /sys/class/android_usb/android$num/functions
311
./9056:	echo diag,adb,serial,rmnet,mass_storage,audio > /sys/class/android_usb/android$num/functions
312
</pre>
313
314 2 domi
It would be great to find out the actual vendor of these, so we can tell people exactly what to buy. I'm assuming Chinese LTE dongles from eBay are prime candidates, but that's just a guess.
Add picture from clipboard (Maximum size: 48.8 MB)