1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
|
/**
* Author: Sven Gothel <sgothel@jausoft.com>
* Copyright (c) 2021 Gothel Software e.K.
*
* Permission is hereby granted, free of charge, to any person obtaining
* a copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so, subject to
* the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
* LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
* WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
package org.direct_bt;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.nio.ByteOrder;
import java.text.SimpleDateFormat;
import java.util.Date;
import org.direct_bt.SMPKeyMask.KeyType;
import org.jau.io.PrintUtil;
import org.jau.net.EUI48;
import org.jau.sys.Clock;
/**
* Storage for SMP keys including required connection parameter per local adapter and remote device.
*
* File format version 5.
*
* Storage for a device's {@link BDAddressAndType}, its security connection setup {@link BTSecurityLevel} + {@link SMPIOCapability}
* and optionally the initiator and responder {@link SMPLongTermKey LTK}, {@link SMPSignatureResolvingKey CSRK}
* and {@link SMPLinkKey LK} within one file.
* <p>
* Since the {@link SMPLongTermKey LTK}, {@link SMPSignatureResolvingKey CSRK}
* and {@link SMPLinkKey LK}
* are optionally set depending on their availability per initiator and responder,
* implementation supports mixed mode for certain devices.
* E.g. LTK responder key only etc.
* </p>
* <p>
* Data is stored in {@link ByteOrder#LITTLE_ENDIAN} format, native to Bluetooth.
* </p>
* <p>
* Filename as retrieved by {@link #getFileBasename(BDAddressAndType)} and {@link #getFileBasename()}
* has the following form {@code bd_010203040506_C026DA01DAB11.key}:
* <ul>
* <li>{@code 'bd_'} prefix</li>
* <li>{@code '010203040506'} local {@link EUI48} local adapter address</li>
* <li>{@code '_'} separator</li>
* <li>{@code 'C026DA01DAB1'} remote {@link EUI48} remote device address</li>
* <li>{@code '1'} {@link BDAddressType}</li>
* <li>{@code '.key'} suffix</li>
* </li>
* </p>
* @see BTDevice#setSMPKeyBin(SMPKeyBin)
* @see BTDevice#uploadKeys()
*/
public class SMPKeyBin {
public static final short VERSION = (short)0b0101010101010101 + (short)5; // bitpattern + version
private short version; // 2
private short size; // 2
private long ts_creation_sec; // 8
private final BDAddressAndType localAddress; // 7
private final BDAddressAndType remoteAddress; // 7
private BTSecurityLevel sec_level;; // 1
private SMPIOCapability io_cap; // 1
private final SMPKeyMask keys_init; // 1
private final SMPKeyMask keys_resp; // 1
private SMPLongTermKey ltk_init; // 28 (optional)
private SMPIdentityResolvingKey irk_init; // 17 (optional)
private SMPSignatureResolvingKey csrk_init; // 17 (optional)
private SMPLinkKey lk_init; // 18 (optional)
private SMPLongTermKey ltk_resp; // 28 (optional)
private SMPIdentityResolvingKey irk_resp; // 17 (optional)
private SMPSignatureResolvingKey csrk_resp; // 17 (optional)
private SMPLinkKey lk_resp; // 18 (optional)
private static final int byte_size_max = 190;
private static final int byte_size_min = 30;
// Min-Max: 30 - 190 bytes
boolean verbose;
final private short calcSize() {
short s = 0;
s += 2; // sizeof(version);
s += 2; // sizeof(size);
s += 8; // sizeof(ts_creation_sec);
s += 6; // sizeof(localAddress.address);
s += 1; // sizeof(localAddress.type);
s += 6; // sizeof(remoteAddress.address);
s += 1; // sizeof(remoteAddress.type);
s += 1; // sizeof(sec_level);
s += 1; // sizeof(io_cap);
s += 1; // sizeof(keys_init);
s += 1; // sizeof(keys_resp);
if( hasLTKInit() ) {
s += SMPLongTermKey.byte_size; // sizeof(ltk_init);
}
if( hasIRKInit() ) {
s += SMPIdentityResolvingKey.byte_size; // sizeof(irk_init);
}
if( hasCSRKInit() ) {
s += SMPSignatureResolvingKey.byte_size; // sizeof(csrk_init);
}
if( hasLKInit() ) {
s += SMPLinkKey.byte_size; // sizeof(lk_init);
}
if( hasLTKResp() ) {
s += SMPLongTermKey.byte_size; // sizeof(ltk_resp);
}
if( hasIRKResp() ) {
s += SMPIdentityResolvingKey.byte_size; // sizeof(irk_resp);
}
if( hasCSRKResp() ) {
s += SMPSignatureResolvingKey.byte_size; // sizeof(csrk_resp);
}
if( hasLKResp() ) {
s += SMPLinkKey.byte_size; // sizeof(lk_resp);
}
return s;
}
/**
* Create a new SMPKeyBin instance based upon given BTDevice's
* BTSecurityLevel, SMPPairingState, PairingMode and LTK keys.
*
* Returned SMPKeyBin shall be tested if valid via {@link SMPKeyBin#isValid()},
* whether the retrieved data from BTDevice is consistent and hence
* having BTDevice is a well connected state.
*
* @param device the BTDevice from which all required data is derived
* @return a valid SMPKeyBin instance if properly connected, otherwise an invalid instance.
* @see BTDevice
* @see #isValid()
*/
static public SMPKeyBin create(final BTDevice device) {
final BTSecurityLevel sec_lvl = device.getConnSecurityLevel();
final SMPPairingState pstate = device.getPairingState();
final PairingMode pmode = device.getPairingMode(); // Skip PairingMode::PRE_PAIRED (write again)
final SMPKeyBin smpKeyBin = new SMPKeyBin(device.getAdapter().getAddressAndType(), device.getAddressAndType(),
device.getConnSecurityLevel(), device.getConnIOCapability());
if( ( BTSecurityLevel.NONE.value < sec_lvl.value && SMPPairingState.COMPLETED == pstate && PairingMode.NEGOTIATING.value < pmode.value ) ||
( BTSecurityLevel.NONE.value == sec_lvl.value && SMPPairingState.NONE == pstate && PairingMode.NONE == pmode ) )
{
final SMPKeyMask keys_resp = device.getAvailableSMPKeys(true /* responder */);
final SMPKeyMask keys_init = device.getAvailableSMPKeys(false /* responder */);
if( keys_init.isSet(SMPKeyMask.KeyType.ENC_KEY) ) {
smpKeyBin.setLTKInit( device.getLongTermKey(false /* responder */) );
}
if( keys_resp.isSet(SMPKeyMask.KeyType.ENC_KEY) ) {
smpKeyBin.setLTKResp( device.getLongTermKey(true /* responder */) );
}
if( keys_init.isSet(SMPKeyMask.KeyType.ID_KEY) ) {
smpKeyBin.setIRKInit( device.getIdentityResolvingKey(false /* responder */) );
}
if( keys_resp.isSet(SMPKeyMask.KeyType.ID_KEY) ) {
smpKeyBin.setIRKResp( device.getIdentityResolvingKey(true /* responder */) );
}
if( keys_init.isSet(SMPKeyMask.KeyType.SIGN_KEY) ) {
smpKeyBin.setCSRKInit( device.getSignatureResolvingKey(false /* responder */) );
}
if( keys_resp.isSet(SMPKeyMask.KeyType.SIGN_KEY) ) {
smpKeyBin.setCSRKResp( device.getSignatureResolvingKey(true /* responder */) );
}
if( keys_init.isSet(SMPKeyMask.KeyType.LINK_KEY) ) {
smpKeyBin.setLKInit( device.getLinkKey(false /* responder */) );
}
if( keys_resp.isSet(SMPKeyMask.KeyType.LINK_KEY) ) {
smpKeyBin.setLKResp( device.getLinkKey(true /* responder */) );
}
} else {
smpKeyBin.size = 0; // explicitly mark invalid
}
return smpKeyBin;
}
/**
* Create a new SMPKeyBin instance on the fly based upon given BTDevice's
* BTSecurityLevel, SMPPairingState, PairingMode and LTK keys.
* If valid, instance is stored to a file denoted by `path` and {@link BTDevice#getAddressAndType()}.
*
* If {@link BTDevice#getPairingMode()} is {@link PairingMode#PRE_PAIRED}, an existing file will not be overwritten.
* Otherwise, a new key is assumed and an existing file shall be overwritten.
*
* Method returns `false` if resulting SMPKeyBin is not {@link SMPKeyBin#isValid()}.
* Otherwise, method returns the {@link SMPKeyBin#write(String)} result.
*
* @param device the BTDevice from which all required data is derived
* @param path the path for the stored SMPKeyBin file.
* @param verbose_ set to true to have detailed write processing logged to stderr, otherwise false
* @return `true` if file has been successfully written, otherwise `false`.
* @see BTDevice
* @see #create(BTDevice)
* @see #write(String)
* @see #isValid()
*/
static public boolean createAndWrite(final BTDevice device, final String path, final boolean verbose_) {
final SMPKeyBin smpKeyBin = SMPKeyBin.create(device);
if( smpKeyBin.isValid() ) {
smpKeyBin.setVerbose( verbose_ );
final boolean overwrite = PairingMode.PRE_PAIRED != device.getPairingMode();
return smpKeyBin.write( path, overwrite );
} else {
if( verbose_ ) {
PrintUtil.println(System.err, "Create SMPKeyBin: Invalid "+smpKeyBin+", "+device);
}
return false;
}
}
/**
* Create a new SMPKeyBin instance based upon stored file denoted by `fname`.
*
* Returned SMPKeyBin shall be tested if valid via {@link SMPKeyBin#isValid()},
* whether the read() operation was successful and data is consistent.
*
* If file is invalid, it is removed.
*
* @param fname full path of the stored SMPKeyBin file.
* @param removeInvalidFile if `true` and file is invalid, remove it. Otherwise keep it alive.
* @param verbose_ set to true to have detailed read processing logged to stderr, otherwise false
* @return valid SMPKeyBin instance if file exist and read successfully, otherwise invalid SMPKeyBin instance.
* @see #isValid()
* @see #read(String, String)
*/
static public SMPKeyBin read(final String fname, final boolean verbose_) {
final SMPKeyBin smpKeyBin = new SMPKeyBin();
smpKeyBin.setVerbose( verbose_ );
smpKeyBin.read( fname ); // read failure -> !isValid()
return smpKeyBin;
}
/**
* Create a new SMPKeyBin instance based upon the given BTDevice's matching filename,
* see SMPKeyBin API doc for filename naming scheme.
*
* Returned SMPKeyBin shall be tested if valid via SMPKeyBin::isValid(),
* whether the read() operation was successful and data is consistent.
*
* If file is invalid, it is removed.
*
* @param path directory for the stored SMPKeyBin file.
* @param device BTDevice used to derive the filename, see getFilename()
* @param verbose_ set to true to have detailed read processing logged to stderr, otherwise false
* @return valid SMPKeyBin instance if file exist and read successfully, otherwise invalid SMPKeyBin instance.
* @see getFilename()
* @see isValid()
* @see read()
*/
static public SMPKeyBin read(final String path, final BTDevice device, final boolean verbose_) {
return read(getFilename(path, device), verbose_);
}
public SMPKeyBin(final BDAddressAndType localAddress_,
final BDAddressAndType remoteAddress_,
final BTSecurityLevel sec_level_, final SMPIOCapability io_cap_)
{
version = VERSION;
this.size = 0;
this.ts_creation_sec = Clock.wallClockSeconds();
this.localAddress = localAddress_;
this.remoteAddress = remoteAddress_;
this.sec_level = sec_level_;
this.io_cap = io_cap_;
this.keys_init = new SMPKeyMask();
this.keys_resp = new SMPKeyMask();
this.ltk_init = new SMPLongTermKey();
this.irk_init = new SMPIdentityResolvingKey();
this.csrk_init = new SMPSignatureResolvingKey();
this.lk_init = new SMPLinkKey();
this.ltk_resp = new SMPLongTermKey();
this.irk_resp = new SMPIdentityResolvingKey();
this.csrk_resp = new SMPSignatureResolvingKey();
this.lk_resp = new SMPLinkKey();
this.size = calcSize();
}
public SMPKeyBin() {
version = VERSION;
size = 0;
ts_creation_sec = 0;
localAddress = new BDAddressAndType();
remoteAddress = new BDAddressAndType();
sec_level = BTSecurityLevel.UNSET;
io_cap = SMPIOCapability.UNSET;
keys_init = new SMPKeyMask();
keys_resp = new SMPKeyMask();
ltk_init = new SMPLongTermKey();
irk_init = new SMPIdentityResolvingKey();
csrk_init = new SMPSignatureResolvingKey();
lk_init = new SMPLinkKey();
ltk_resp = new SMPLongTermKey();
irk_resp = new SMPIdentityResolvingKey();
csrk_resp = new SMPSignatureResolvingKey();
lk_resp = new SMPLinkKey();
size = calcSize();
}
final public boolean isVersionValid() { return VERSION==version; }
final public short getVersion() { return version;}
final public boolean isSizeValid() { return calcSize() == size;}
final public short getSize() { return size;}
/** Returns the creation timestamp in seconds since Unix epoch */
final public long getCreationTime() { return ts_creation_sec; }
/** Return the local adapter address. */
final public BDAddressAndType getLocalAddrAndType() { return localAddress; }
/** Return the remote device address. */
final public BDAddressAndType getRemoteAddrAndType() { return remoteAddress; }
/** Return whether Secure Connection (SC) is being used via LTK keys. */
final public boolean uses_SC() {
return ( hasLTKInit() && getLTKInit().properties.isSet( SMPLongTermKey.PropertyType.SC ) ) ||
( hasLTKResp() && getLTKResp().properties.isSet( SMPLongTermKey.PropertyType.SC ) );
}
final public BTSecurityLevel getSecLevel() { return sec_level; }
final public SMPIOCapability getIOCap() { return io_cap; }
final public boolean hasLTKInit() { return keys_init.isSet(KeyType.ENC_KEY); }
final public boolean hasIRKInit() { return keys_init.isSet(KeyType.ID_KEY); }
final public boolean hasCSRKInit() { return keys_init.isSet(KeyType.SIGN_KEY); }
final public boolean hasLKInit() { return keys_init.isSet(KeyType.LINK_KEY); }
final public SMPLongTermKey getLTKInit() { return ltk_init; }
final public SMPIdentityResolvingKey getIRKInit() { return irk_init; }
final public SMPSignatureResolvingKey getCSRKInit() { return csrk_init; }
final public SMPLinkKey getLKInit() { return lk_init; }
final public void setLTKInit(final SMPLongTermKey v) {
ltk_init = v;
keys_init.set(KeyType.ENC_KEY);
size = calcSize();
}
final public void setIRKInit(final SMPIdentityResolvingKey v) {
irk_init = v;
keys_init.set(KeyType.ID_KEY);
size = calcSize();
}
final public void setCSRKInit(final SMPSignatureResolvingKey v) {
csrk_init = v;
keys_init.set(KeyType.SIGN_KEY);
size = calcSize();
}
final public void setLKInit(final SMPLinkKey v) {
lk_init = v;
keys_init.set(KeyType.LINK_KEY);
size = calcSize();
}
final public boolean hasLTKResp() { return keys_resp.isSet(KeyType.ENC_KEY); }
final public boolean hasIRKResp() { return keys_resp.isSet(KeyType.ID_KEY); }
final public boolean hasCSRKResp() { return keys_resp.isSet(KeyType.SIGN_KEY); }
final public boolean hasLKResp() { return keys_resp.isSet(KeyType.LINK_KEY); }
final public SMPLongTermKey getLTKResp() { return ltk_resp; }
final public SMPIdentityResolvingKey getIRKResp() { return irk_resp; }
final public SMPSignatureResolvingKey getCSRKResp() { return csrk_resp; }
final public SMPLinkKey getLKResp() { return lk_resp; }
final public void setLTKResp(final SMPLongTermKey v) {
ltk_resp = v;
keys_resp.set(KeyType.ENC_KEY);
size = calcSize();
}
final public void setIRKResp(final SMPIdentityResolvingKey v) {
irk_resp = v;
keys_resp.set(KeyType.ID_KEY);
size = calcSize();
}
final public void setCSRKResp(final SMPSignatureResolvingKey v) {
csrk_resp = v;
keys_resp.set(KeyType.SIGN_KEY);
size = calcSize();
}
final public void setLKResp(final SMPLinkKey v) {
lk_resp = v;
keys_resp.set(KeyType.LINK_KEY);
size = calcSize();
}
final public void setVerbose(final boolean v) { verbose = v; }
final public boolean isValid() {
return isVersionValid() && isSizeValid() &&
BTSecurityLevel.UNSET != sec_level &&
SMPIOCapability.UNSET != io_cap &&
( !hasLTKInit() || ltk_init.isValid() ) &&
( !hasLTKResp() || ltk_resp.isValid() ) &&
( !hasLKInit() || lk_init.isValid() ) &&
( !hasLKResp() || lk_resp.isValid() );
}
/**
* Returns the base filename, see {@link SMPKeyBin} API doc for naming scheme.
*/
final public String getFileBasename() {
final String r = "bd_"+localAddress.address.toString()+"_"+remoteAddress.address.toString()+remoteAddress.type.value+".key";
return r.replace(":", "");
}
/**
* Returns the base filename, see {@link SMPKeyBin} API doc for naming scheme.
*/
final public static String getFileBasename(final BDAddressAndType localAddress_, final BDAddressAndType remoteAddress_) {
final String r = "bd_"+localAddress_.address.toString()+"_"+remoteAddress_.address.toString()+remoteAddress_.type.value+".key";
return r.replace(":", "");
}
final public static String getFilename(final String path, final BDAddressAndType localAddress_, final BDAddressAndType remoteAddress_) {
return path + "/" + getFileBasename(localAddress_, remoteAddress_);
}
final public static String getFilename(final String path, final BTDevice remoteDevice) {
return getFilename(path, remoteDevice.getAdapter().getAddressAndType(), remoteDevice.getAddressAndType());
}
final public String getFilename(final String path) {
return getFilename(path, localAddress, remoteAddress);
}
@Override
final public String toString() {
final StringBuilder res = new StringBuilder();
res.append("SMPKeyBin[local").append(localAddress.toString()).append(", remote ").append(remoteAddress.toString()).append(", SC ").append(uses_SC()).append(", sec ").append(sec_level).append(", io ").append(io_cap).append(", ");
if( isVersionValid() ) {
boolean comma = false;
res.append("Init[");
if( hasLTKInit() && null != ltk_init ) {
res.append(ltk_init.toString());
comma = true;
}
if( hasIRKInit() && null != irk_init ) {
if( comma ) {
res.append(", ");
}
res.append(irk_init.toString());
comma = true;
}
if( hasCSRKInit() && null != csrk_init ) {
if( comma ) {
res.append(", ");
}
res.append(csrk_init.toString());
comma = true;
}
if( hasLKInit() && null != lk_init ) {
if( comma ) {
res.append(", ");
}
res.append(lk_init.toString());
comma = true;
}
comma = false;
res.append("], Resp[");
if( hasLTKResp() && null != ltk_resp ) {
res.append(ltk_resp.toString());
comma = true;
}
if( hasIRKResp() && null != irk_resp ) {
if( comma ) {
res.append(", ");
}
res.append(irk_resp.toString());
comma = true;
}
if( hasCSRKResp() && null != csrk_resp ) {
if( comma ) {
res.append(", ");
}
res.append(csrk_resp.toString());
comma = true;
}
if( hasLKResp() && null != lk_resp ) {
if( comma ) {
res.append(", ");
}
res.append(lk_resp.toString());
comma = true;
}
res.append("], ");
}
res.append("ver[0x").append(Integer.toHexString(version)).append(", ok ").append(isVersionValid()).append("], size[").append(size);
if( verbose ) {
res.append(", calc ").append(calcSize());
}
res.append(", valid ").append(isSizeValid()).append("], ");
{
final SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
final Date d = new Date(ts_creation_sec*1000); // s -> ms
res.append(sdf.format(d));
}
res.append(", valid ").append(isValid()).append("]");
return res.toString();
}
final private static boolean remove_impl(final String fname) {
final File file = new File( fname );
try {
return file.delete(); // alternative to truncate, if existing
} catch (final Exception ex) {
PrintUtil.println(System.err, "Remove SMPKeyBin: Failed "+fname+": "+ex.getMessage());
ex.printStackTrace();
return false;
}
}
final public static boolean remove(final String path, final BTDevice remoteDevice_) {
return remove(path, remoteDevice_.getAdapter().getAddressAndType(), remoteDevice_.getAddressAndType());
}
final public static boolean remove(final String path, final BDAddressAndType localAddress_, final BDAddressAndType remoteAddress_) {
return remove_impl( getFilename(path, localAddress_, remoteAddress_) );
}
final public boolean remove(final String path) {
return remove_impl( getFilename(path) );
}
final public boolean write(final String path, final boolean overwrite) {
if( !isValid() ) {
PrintUtil.println(System.err, "Write SMPKeyBin: Invalid (skipped) "+toString());
return false;
}
final String fname = getFilename(path);
final File file = new File( fname );
OutputStream out = null;
try {
if( file.exists() ) {
if( overwrite ) {
if( !file.delete() ) {
PrintUtil.println(System.err, "Write SMPKeyBin: Failed deletion of existing file "+fname+": "+toString());
return false;
}
} else {
PrintUtil.println(System.err, "Write SMPKeyBin: Not overwriting existing file "+fname+": "+toString());
return false;
}
}
final byte[] buffer = new byte[byte_size_max];
out = new FileOutputStream(file);
out.write( (byte) version );
out.write( (byte)( version >> 8 ) );
out.write( (byte) size );
out.write( (byte)( size >> 8 ) );
writeLong(ts_creation_sec, out, buffer);
{
localAddress.address.put(buffer, 0, ByteOrder.LITTLE_ENDIAN);
out.write(buffer, 0, localAddress.address.b.length);
}
out.write(localAddress.type.value);
{
remoteAddress.address.put(buffer, 0, ByteOrder.LITTLE_ENDIAN);
out.write(buffer, 0, remoteAddress.address.b.length);
}
out.write(remoteAddress.type.value);
out.write(sec_level.value);
out.write(io_cap.value);
out.write(keys_init.mask);
out.write(keys_resp.mask);
if( hasLTKInit() ) {
ltk_init.put(buffer, 0);
out.write(buffer, 0, SMPLongTermKey.byte_size);
}
if( hasIRKInit() ) {
irk_init.put(buffer, 0);
out.write(buffer, 0, SMPIdentityResolvingKey.byte_size);
}
if( hasCSRKInit() ) {
csrk_init.put(buffer, 0);
out.write(buffer, 0, SMPSignatureResolvingKey.byte_size);
}
if( hasLKInit() ) {
lk_init.put(buffer, 0);
out.write(buffer, 0, SMPLinkKey.byte_size);
}
if( hasLTKResp() ) {
ltk_resp.put(buffer, 0);
out.write(buffer, 0, SMPLongTermKey.byte_size);
}
if( hasIRKResp() ) {
irk_resp.put(buffer, 0);
out.write(buffer, 0, SMPIdentityResolvingKey.byte_size);
}
if( hasCSRKResp() ) {
csrk_resp.put(buffer, 0);
out.write(buffer, 0, SMPSignatureResolvingKey.byte_size);
}
if( hasLKResp() ) {
lk_resp.put(buffer, 0);
out.write(buffer, 0, SMPLinkKey.byte_size);
}
if( verbose ) {
PrintUtil.println(System.err, "Write SMPKeyBin: "+fname+": "+toString());
}
return true;
} catch (final Exception ex) {
PrintUtil.println(System.err, "Write SMPKeyBin: Failed "+fname+": "+toString()+": "+ex.getMessage());
ex.printStackTrace();
} finally {
try {
if( null != out ) {
out.close();
}
} catch (final IOException e) {
e.printStackTrace();
}
}
return false;
}
final public boolean read(final String fname) {
final File file = new File(fname);
InputStream in = null;
int remaining = 0;
boolean err = false;
try {
if( !file.canRead() ) {
if( verbose ) {
PrintUtil.println(System.err, "Read SMPKeyBin: Failed "+fname+": Not existing or readable: "+toString());
}
size = 0; // explicitly mark invalid
return false;
}
final byte[] buffer = new byte[byte_size_max];
in = new FileInputStream(file);
read(in, buffer, byte_size_min, fname);
int i=0;
version = (short) ( ( buffer[i++] & 0xff ) | ( ( buffer[i++] & 0xff ) << 8 ) );
size = (short) ( ( buffer[i++] & 0xff ) | ( ( buffer[i++] & 0xff ) << 8 ) );
remaining = size - 2 /* sizeof(version) */ - 2 /* sizeof(size) */;
if( !err && 8 <= remaining ) {
ts_creation_sec = getLong(buffer, i); i+=8;
remaining -= 8;
} else {
err = true;
}
if( !err && 7+7+4 <= remaining ) {
localAddress.address = new EUI48(buffer, i, ByteOrder.LITTLE_ENDIAN); i+=6;
localAddress.type = BDAddressType.get(buffer[i++]);
remoteAddress.address = new EUI48(buffer, i, ByteOrder.LITTLE_ENDIAN); i+=6;
remoteAddress.type = BDAddressType.get(buffer[i++]);
sec_level = BTSecurityLevel.get(buffer[i++]);
io_cap = SMPIOCapability.get(buffer[i++]);
keys_init.mask = buffer[i++];
keys_resp.mask = buffer[i++];
remaining -= 7+7+4;
} else {
err = true;
}
if( !err && hasLTKInit() ) {
if( SMPLongTermKey.byte_size <= remaining ) {
read(in, buffer, SMPLongTermKey.byte_size, fname);
ltk_init.get(buffer, 0);
remaining -= SMPLongTermKey.byte_size;
} else {
err = true;
}
}
if( !err && hasIRKInit() ) {
if( SMPIdentityResolvingKey.byte_size <= remaining ) {
read(in, buffer, SMPIdentityResolvingKey.byte_size, fname);
irk_init.get(buffer, 0);
remaining -= SMPIdentityResolvingKey.byte_size;
} else {
err = true;
}
}
if( !err && hasCSRKInit() ) {
if( SMPSignatureResolvingKey.byte_size <= remaining ) {
read(in, buffer, SMPSignatureResolvingKey.byte_size, fname);
csrk_init.get(buffer, 0);
remaining -= SMPSignatureResolvingKey.byte_size;
} else {
err = true;
}
}
if( !err && hasLKInit() ) {
if( SMPLinkKey.byte_size <= remaining ) {
read(in, buffer, SMPLinkKey.byte_size, fname);
lk_init.get(buffer, 0);
remaining -= SMPLinkKey.byte_size;
} else {
err = true;
}
}
if( !err && hasLTKResp() ) {
if( SMPLongTermKey.byte_size <= remaining ) {
read(in, buffer, SMPLongTermKey.byte_size, fname);
ltk_resp.get(buffer, 0);
remaining -= SMPLongTermKey.byte_size;
} else {
err = true;
}
}
if( !err && hasIRKResp() ) {
if( SMPIdentityResolvingKey.byte_size <= remaining ) {
read(in, buffer, SMPIdentityResolvingKey.byte_size, fname);
irk_resp.get(buffer, 0);
remaining -= SMPIdentityResolvingKey.byte_size;
} else {
err = true;
}
}
if( !err && hasCSRKResp() ) {
if( SMPSignatureResolvingKey.byte_size <= remaining ) {
read(in, buffer, SMPSignatureResolvingKey.byte_size, fname);
csrk_resp.get(buffer, 0);
remaining -= SMPSignatureResolvingKey.byte_size;
} else {
err = true;
}
}
if( !err && hasLKResp() ) {
if( SMPLinkKey.byte_size <= remaining ) {
read(in, buffer, SMPLinkKey.byte_size, fname);
lk_resp.get(buffer, 0);
remaining -= SMPLinkKey.byte_size;
} else {
err = true;
}
}
if( !err ) {
err = !isValid();
}
} catch (final Exception ex) {
PrintUtil.println(System.err, "Read SMPKeyBin: Failed "+fname+": "+toString()+": "+ex.getMessage());
ex.printStackTrace();
err = true;
} finally {
try {
if( null != in ) {
in.close();
}
} catch (final IOException e) {
e.printStackTrace();
}
}
if( err ) {
file.delete();
if( verbose ) {
PrintUtil.println(System.err, "Read SMPKeyBin: Failed "+fname+" (removed): "+toString()+", remaining "+remaining);
}
size = 0; // explicitly mark invalid
} else {
if( verbose ) {
PrintUtil.println(System.err, "Read SMPKeyBin: OK "+fname+": "+toString()+", remaining "+remaining);
}
}
return err;
}
final static private int read(final InputStream in, final byte[] buffer, final int rsize, final String fname) throws IOException {
final int read_count = in.read(buffer, 0, rsize);
if( read_count != rsize ) {
throw new IOException("Couldn't read "+rsize+" bytes, only "+read_count+" from "+fname);
}
return read_count;
}
final static private long getLong(final byte[] buffer, final int offset) throws IOException {
long res = 0;
for (int j = 0; j < 8; ++j) {
res |= ((long) buffer[offset+j] & 0xff) << j*8;
}
return res;
}
final static private void writeLong(final long value, final OutputStream out, final byte[] buffer) throws IOException {
for (int i = 0; i < 8; ++i) {
buffer[i] = (byte) (value >> i*8);
}
out.write(buffer, 0, 8);
}
public static void main(final String[] args) {
BTFactory.initDirectBTLibrary();
boolean verbose=false;
for(int i=0; i< args.length; i++) {
final String arg = args[i];
if( arg.equals("-verbose") || arg.equals("-v") ) {
verbose = true;
} else {
if( verbose ) {
System.err.println("Read: '"+arg+"'");
}
final SMPKeyBin key = SMPKeyBin.read(arg, verbose);
System.err.println(key.toString());
}
}
}
};
|