x86-64 기계 코드 기능, 53 48 바이트
변경 로그:
jz
64 비트 시프트를 사용하는 대신 시프트보다 -2>>(32-0)
특수한 경우 .
- AL 대신 ZF에서 -3을 반환하여
setnz al
.
(또한보십시오 이를 기반으로 한 Daniel Schepler의 32 비트 머신 코드 답변 그러면 다른 아이디어를 사용하도록 발전했습니다.이 답변의 맨 아래에 최신 버전이 포함되어 있습니다.)
호스트에 대해 ZF = 0을 반환 아닌 경우서브넷에 , 서브넷에있는 ZF = 1을 하므로 다음과 같이 결과를 분기 할 수 있습니다.je host_matches_subnet
x86-64 System V 호출 규칙을 사용하여 호출 가능
bool not_in_subnet(int dummy_rdi, const char *input_rsi);
추가 한setnz al
.
입력 문자열에는 호스트와 네트워크가 모두 정확히 1 자리가 아닌 문자로 구분되어 있습니다. CIDR 너비 끝 다음의 메모리는 페이지 끝 전에 3 자리 이상의 비 바이트 바이트를 포함해야합니다. (cmdline arg와 같이 대부분의 경우 문제가되지 않습니다.) Daniel의 32 비트 버전에는이 제한이 없습니다.
동일한 dot-quad parse 루프를 3 번 실행하여 두 개의 IPv4 주소를 얻고 /mask
dword의 높은 바이트에서 정수를 얻습니다 . (이것이 다음에 읽기 가능한 메모리가 있어야하는 이유입니다./mask
하지만 ASCII 숫자가 있는지는 중요하지 않습니다.)
우리는 할 (host ^ subnet) >> (32-mask)
호스트 비트 밖으로 이동하는 서브넷과 호스트 사이의 유일한 차이를 떠나, (불일치로 허용되는 것들). /0
32만큼 이동해야하는 특수한 경우 를 해결하기 위해 count = 0에서 이동을 건너 뜁니다. ( neg cl
우리가에서 분기 할 수 있습니다 세트 ZF, 그리고 우리가 이동하지 않을 경우 반환 값으로 둡니다.) 참고 것을 32-mask mod 32 = -mask
스칼라 변화는 그들의 수를 마스크, 및 x86 & 31
또는 & 63
.
line addr machine NASM source. (from nasm -felf64 -l/dev/stdout)
num code bytes
1 %use smartalign
2
3 ;10.4.1.33 10.4.0.0/23 true
4 ;10.4.1.33 10.4.0.0/24 false
5
6 ;; /codegolf/185005/im-in-your-subnets-golfing-your-code
7 %ifidn __OUTPUT_FORMAT__, elf64
8 in_subnet:
9
10 00000000 6A03 push 3
11 00000002 5F pop rdi ; edi = 3 dotted-quads to parse, sort of.
12 .parseloop:
13
14 ;xor ebx,ebx ; doesn't need to be zeroed first; we end up shifting out the original contents
15 ;lea ecx, [rbx+4]
16 00000003 6A04 push 4
17 00000005 59 pop rcx ; rcx = 4 integers in a dotted-quad
18 .quadloop:
19
20 00000006 31D2 xor edx,edx ; standard edx=atoi(rdi) loop terminated by a non-digit char
21 00000008 EB05 jmp .digit_entry
22 .digitloop:
23 0000000A 6BD20A imul edx, 10
24 0000000D 00C2 add dl, al
25 .digit_entry:
26 0000000F AC lodsb
27 00000010 2C30 sub al, '0'
28 00000012 3C09 cmp al, 9
29 00000014 76F4 jbe .digitloop
30 ; al=non-digit character - '0'
31 ; RDI pointing to the next character.
32 ; EDX = integer
33
34 00000016 C1E308 shl ebx, 8
35 00000019 88D3 mov bl, dl ; build a quad 1 byte at a time, ending with the lowest byte
36 0000001B E2E9 loop .quadloop
37
38 0000001D 53 push rbx ; push result to be collected after parsing 3 times
39 0000001E FFCF dec edi
40 00000020 75E1 jnz .parseloop
41
42 00000022 59 pop rcx ; /mask (at the top of a dword)
43 00000023 5A pop rdx ; subnet
44 00000024 58 pop rax ; host
45 00000025 0FC9 bswap ecx ; cl=network bits (reusing the quad parse loop left it in the high byte)
49 00000027 F6D9 neg cl
50 00000029 7404 jz .all_net ; skip the count=32 special case
51
52 0000002B 31D0 xor eax, edx ; host ^ subnet
53 0000002D D3E8 shr eax, cl ; shift out the host bits, keeping only the diff of subnet bits
54
55 .all_net:
56 ; setnz al ; return ZF=1 match, ZF=0 not in subnet
57 0000002F C3 ret
58 00000030 30 .size: db $ - in_subnet
0x30 = 48 bytes
(최신 버전으로 업데이트되지 않음)
온라인으로 사용해보십시오!
A 이하 _start
에서이를 호출 argv[1]
및 종료 상태를 반환합니다.
## on my desktop
$ ./ipv4-subnet "10.4.1.33 10.4.0.0/24" && echo "$? : in subnet" || echo "$? : not in subnet"
not in subnet
$ ./ipv4-subnet "10.4.1.33 10.4.0.0/23" && echo "$? : in subnet" || echo "$? : not in subnet"
in subnet
공백 대신 줄 바꿈이 포함 된 명령 줄 인수를 전달하면 제대로 작동합니다. 그러나 그 뿐만 아니라 대신 해야합니다.
x86 32 비트 기계 코드 기능, 38 바이트
9 integer-> uint8_t 구문 분석하고 스택에서 "푸시"하십시오. 여기서는 dword로 튀어 나오거나 CL의 마지막 것을 사용합니다. 문자열의 끝을 지나서 읽지 마십시오.
또한 dec
32 비트 모드에서는 1 바이트입니다.
72 in_subnet:
73 00000000 89E7 mov edi, esp
74 00000002 51 push ecx
75 00000003 51 push ecx ; sub esp,8
76 .byteloop:
77
78 00000004 31C9 xor ecx,ecx ; standard ecx=atoi(rdi) loop terminated by a non-digit char
79 ; runs 9 times: 8 in two dotted-quads, 1 mask length
80 00000006 EB05 jmp .digit_entry
81 .digitloop:
82 00000008 6BC90A imul ecx, 10
83 0000000B 00C1 add cl, al
84 .digit_entry:
85 0000000D AC lodsb
86 0000000E 2C30 sub al, '0'
87 00000010 3C09 cmp al, 9
88 00000012 76F4 jbe .digitloop
89 ; RDI pointing to the next character.
90 ; EDX = integer
91
92 00000014 4F dec edi
93 00000015 880F mov [edi], cl ; /mask store goes below ESP but we don't reload it
94 00000017 39E7 cmp edi, esp
95 00000019 73E9 jae .byteloop
96
97 ;; CL = /mask still there from the last conversion
98 ;; ESP pointing at subnet and host on the stack, EDI = ESP-1
99
100 0000001B 5A pop edx ; subnet
101 0000001C 58 pop eax ; host
102
103 0000001D 31D0 xor eax, edx ; host ^ subnet
104 0000001F F6D9 neg cl ; -mask = (32-mask) mod 32; x86 shifts mask their count
105 00000021 7402 jz .end ; 32-n = 32 special case
106 00000023 D3E8 shr eax, cl
107 .end:
108 ; setz al ; just return in ZF
109 00000025 C3 ret
110 00000026 26 .size: db $ - in_subnet
0x26 = 38 bytes
테스트 발신자
113 global _start
114 _start:
115 00000027 8B742408 mov esi, [esp+8] ; argv[1]
116 0000002B E8D0FFFFFF call in_subnet
117 00000030 0F95C3 setnz bl
118 00000033 B801000000 mov eax, 1 ; _exit syscall
119 00000038 CD80 int 0x80