w0w0
    @xiaoxie:OOB一般是指蓝牙之外的其他物理信道来交换配对所需要的信息,这个信道同时也用来发现设备,比如NFC。从云端来交换信息广义来说也算OOB,信道是802.11的WiFi,不过似乎没有这样用的。
    蓝牙协议分析(11)_BLE安全机制之SM  发表时间:2020-06-03 17:53
    bsp
    @wangyunqian:分享下通过psci处理suspend_ops->enter的流程: PSCI(power supply control interface), 是arm定义的一套处理cpu on/off/suspend等的协议, 比如Linux-kernel发送相应的cpu operation到和Trust-Zone(EL3 by smc)或Hypervirsor(EL2 by hvc),再由TZ或Hyp做对应的操作: 比如: Linux-kernel 要offline、suspend一个cpu,Hypervisor只是把这个cpu给其它的OS使用。 回到suspend: 1, psci初始化:suspend_set_ops(&psci_suspend_ops); static const struct platform_suspend_ops psci_suspend_ops = { .enter = psci_system_suspend_enter, }; 2, psci_system_suspend: static int psci_system_suspend(unsigned long unused) { return invoke_psci_fn(PSCI_FN_NATIVE(1_0, SYSTEM_SUSPEND), __pa_symbol(cpu_resume), 0, 0); } 2.1,这里通过psci组装smc指令,跳转到TZ执行; 2.2 cpu_resume是物理地址; 2.3 Qualcom中TZ会和PMIC通信 power down此cpu; 2.4 唤醒cpu重新power-up时,第一步执行cpu_resume; 因为此时mmu还未打开,所以2.2必须传入cpu_resume的物理地址; cpu_resume中会打开mmu; 3, suspend_ops->enter,即 static int psci_system_suspend_enter(suspend_state_t state) { return cpu_suspend(0, psci_system_suspend); } arch/arm64/kernel/suspend.c int cpu_suspend(unsigned long arg, int (*fn)(unsigned long)) { struct sleep_stack_data state; if (__cpu_suspend_enter(&state)) { ret = psci_system_suspend(arg); } 4, arch/arm64/kernel/sleep.S ENTRY(__cpu_suspend_enter) 第一步保存当前lr到state中 stp x29, lr, [x0, #SLEEP_STACK_DATA_CALLEE_REGS] ... mov x0, #1 //这里返回1 ret ENDPROC(__cpu_suspend_enter) ENTRY(cpu_resume) bl el2_setup // if in EL2 drop to EL1 cleanly bl __cpu_setup /* enable the MMU early - so we can access sleep_save_stash by va */ bl __enable_mmu ldr x8, =_cpu_resume br x8 ENDPROC(cpu_resume) ENTRY(_cpu_resume) ... ldp x29, lr, [x29] //从之前的state中恢复lr mov x0, #0 //返回值为0 ret //return到__cpu_suspend_enter下一行 ENDPROC(_cpu_resume) 5, __cpu_suspend_enter/cpu_resume类似fork,有返回两次的效果: power-on-cpu时第一步会call cpu_resume; 而cpu_resume返回时会返回到__cpu_suspend_enter的下一行。 if (__cpu_suspend_enter(&state)) { /* 第一次返回1, 执行psci_system_suspend*/ ret = psci_system_suspend(arg); } else { //由于cpu_resume返回值为0,那么resume后执行这一步: __cpu_suspend_exit(); }
    中断唤醒系统流程  发表时间:2020-06-03 16:39
    bsp
    @wangyunqian:是的,比附 使用PSCI协议通过TrustZone(EL3/Secure-EL1)处理cpu_suspend时:https://github.com/torvalds/linux/blob/master/drivers/firmware/psci/psci.c#L306 cpu重新上电后,第一步会执行__pa_symbol(cpu_resume),这里必须是物理地址。
    中断唤醒系统流程  发表时间:2020-06-03 15:01
    smcdef
    @chenlifu2015:我让你看的目的不是为了让你确认是不是宏确认编译。而是让你看怎么根据CPU feature检测,动态替换代码的。默认情况下本身就是宏唯一确定了使用LL/SC的方式,只不过boot的时候会检测feature,如果支持LSE,就会把LSE的指令替换了LL/SC的方式。你通过编译是无法确定的。 另外你在arm32上测试有什么意义呢?CPU feature检测替换这块是arm64实现的,arm32是否实现了类似机制都不确定,你的测试能说明什么呢? 你应该去看看这个宏定义的作用 #define ALTERNATIVE(oldinstr, newinstr, ...)
    KASLR  发表时间:2020-06-01 14:32
    chenlifu2015
    @smcdef:我看了下我使用的SDK中内核关于atomic的代码实现,可以确定这部分是通过编译宏来决定的,并且kprobe特性在编译时也没有被打开,因此可以排除kprobe和LSE的原因导致内核代码段hash发生变化,博主,还有其它的思路么,因为我在4.12的arm32位上计算内核hash是不会发生变化的,也就是说是可以关闭掉cpu feature带来的影响,博主,我猜测了一下,这种动态检测的特性能否通过配置宏来关闭呢
    KASLR  发表时间:2020-06-01 11:05
    BeDook
    @callme_friend:.incbin伪指令用于将一个目标文件或数据文件包含到当前的源文件中,被包含的文件不作任何变动的存放在当前文件中,编译器从其后开始继续处理,"dts/dt.dtb"设备树文件,本质就是一二进制文件,且汇编指令中标签"_dtb_dt_begin"就表示地址,不用赋值的。。。
    u-boot启动流程分析(2)_板级(board)部分  发表时间:2020-05-31 00:45
    火耳
    赞,解答了很多疑惑
    内存一致性模型  发表时间:2020-05-31 00:41
    太仓招聘网
    很详细!花了很多时间看完
    一例hardened_usercopy的bug解析  发表时间:2020-05-30 10:54
    smcdef
    @chenlifu2015:例如atomic实现有2种方式,LSE和LL/SC。印象中LSE是armv8.2以后支持的特性。LL/SC是老的实现方式。你看看atomic实现的2个文件吧。
    KASLR  发表时间:2020-05-29 21:15
    chenlifu2015
    @smcdef:感谢博主的回复,我今天去了解了一下kprobe机制,确实可能会导致内核代码段被篡改,但您说的第一点我确实没找到相关资料,能方便一点一下么,比如说一个具体的机制我能够去熟悉,或许这个动态监测的机制能够通过配置宏关闭
    KASLR  发表时间:2020-05-29 16:24

共7862条70/787上一页 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 7071 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 下一页
Copyright @ 2013-2015 蜗窝科技 All rights reserved. Powered by emlog