Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- REDIS
- epoll
- mvwin
- cbpf
- .net core 7
- rfc5508
- ncurses
- Docker
- edge trigger
- DOCKER-USER
- architecture
- doupdate
- level trigger
- Compiler
- iptables
- LOB
- .nret core 배포
- NAPT
- wrefresh
- ioctl
- packet flow
- packet filter
- 어셈블리어
- 풀이
- wnourefresh
- vtable
- C언어
- epoll_wait
- 취약점
- BOF
Archives
- Today
- Total
Tuuna Computer Science
[Assembly] C 라이브러리 함수 strcpy 구현하기 본문
C library_fuction인 strcpy를 어셈블리로 구현해보았다. 출력부분을 write system-call로 구현하려 했지만 귀차니즘이 발생하여 pritnf을 extern해오는 걸루...
어셈블러 : nasm 32bit
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 | %include "asm_io.inc" segment .bss segment .data src db "hello my friend", 0 dest times 100 db 0 format db "%s", 0 ;printf의 format 형식 segment .text extern printf global asm_main asm_main: push ebp mov esp, ebp ;setup routine mov esi, src ;src의 문자열 주소를 esi에 넘김 mov edi, dest ;dest의 문자열 주소를 edi에 넘김 re: cmp byte [esi], 0x00 ;esi를 edi에 옮기기전에 esi의 주소값에 들어있는 byte부분이 NULL인지 체크 je end ;만약 NULL이라면 end로 분기한다. lodsb ; mov al, [esi] => add esi, 1 stosb ; mov [edi], al => add edi, 1 jmp re ; loop end: push dest push format call printf add esp, 8 call print_nl mov esp, ebp pop ebp ret | cs |
'Assembly' 카테고리의 다른 글
[Assembly]어셈블리어 피보나찌수열 구하기 소스코드 (0) | 2018.10.29 |
---|---|
[Assembly] C 라이브러리 함수 strlen 구현하기 (0) | 2018.10.26 |
[어셈블리어] 10진수 배열을 통해 이진수로 출력하기 (0) | 2018.08.31 |
[어셈블리어] 최소공배수 구하기 (0) | 2018.08.30 |
[어셈블리어] 구구단 출력하기 (0) | 2018.08.30 |
Comments