x86-64机器码功能,53 48字节
更新日志:
jz
移位时为-2 ,而不是使用64位移位来处理>>(32-0)
特殊情况。
- -3以ZF而不是AL返回,为节省了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参数。)Daniel的32位版本没有此限制。
我们运行相同的点分四进制解析循环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
(未更新为最新版本)
在线尝试!
包括_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
如果您传递的命令行参数arg包含换行符而不是空格,则可以正常工作。但这必须是,而不是。
x86 32位机器代码功能,38字节
执行9个整数-> 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