Big endian machine: It thinks the first byte it reads is the biggest.
Little endian machine: It thinks the first byte it reads is the littlest.
这是linux对IP头的定义 /usr/include/linux/ip.h 或 linux/include/linux/ip.h)
- struct iphdr {
- #if __BYTE_ORDER == __LITTLE_ENDIAN
- uint8_t ihl:4,
- version:4;
- #elif __BYTE_ORDER == __BIG_ENDIAN
- uint8_t version:4,
- ihl:4;
- #endif
- uint8_t tos;
- uint16_t tot_len;
- uint16_t id;
- uint16_t frag_off;
- uint8_t ttl;
- uint8_t protocol;
- uint16_t check;
- uint32_t saddr;
- uint32_t daddr;
- /*The options start here. */
- };
版本号和首部长度是同一个字节的,这也要区分大端小端吗?我一直以为大端小端是字节间顺序的问题,不是字节内部位顺序的问题。网络数据发送时是字节流还是位流?发送时uint16_t和uint32_t的高字节必需先发送,那么同一字节的高位先发送还是低位?我找不到gcc讲结构位定义的文档,有链接么?
可以这样来解释,
1)从道理上来说,little endian中的位应该这样排列:
01234567
即排在前面的是低位。因此,先分配least significant bits
2)而在Big endian中,位应该这样排列:
76543210
即排在前面的是高位。因此,先分配most significant bits。
可以这样来理解,
1)在Big Endian的情况下,"排在前面的是高位"
a. 对于顺序的两个字节来说,第一个字节是高位(排在前面),第二个字节是低位(排在后面)。
b. 对于字节内部的位来说,
-------most significant bits排在前面,是高位,
-------least significant bits排在后面,是低位。
2)在Little Endian的情况下,"排在前面的是低位"
a. 对于顺序的两个字节来说,第一个字节是低位(排在前面),第二个字节是高位(排在后面)。
b. 对于字节内部的位来说,
-------least significant bits排在前面,是低位,
-------most significant bits排在后面,是高位。
这样,在对struct中的成员进行分配的时候,"按排列顺序分配,先分配排在前面的"
1)big endian从高位向低位分配,
a. 对字节,是先分配低地址的字节,再分配高地址的字节。
b. 对位域,先分配most significant bits,再分配least significant bits。
1)little endian从低位向高位分配,
a. 对字节,是先分配低地址的字节,再分配高地址的字节。
b. 对位域,先分配least significant bits,再分配most significant bits。
======================================
以上说的都是分配的顺序。
对于IP协议来说,
1)IP's byte order is big endian.
2)The bit endianness of IP inherits that of the CPU,
3)and the NIC takes care of converting it from/to the bit transmission/reception order on the wire.
并且,按照IP协议,
1)"version" is the most significant four bits of the first byte of an IP header.
2)"ihl" is the least significant four bits of the first byte of the IP header.
也就是说,version必须分配在most significant four bits,
按照上面说的分配顺序,在big endian中,version必须放在前面。
MSB most significant bits
LSB least significant bits
一句话:对于 little-endian 来说 MSB 在高地址,对 big-endian 来说 MSB 在低地址。
Here is how we would write the integer 0x0a0b0c0d for both big endian and little endian systems, according to the rule above:
Write Integer for Big Endian System
byte addr 0 1 2 3
bit offset 01234567 01234567 01234567 01234567
binary 00001010 00001011 00001100 00001101
hex 0a 0b 0c 0d
Write Integer for Little Endian System
byte addr 3 2 1 0
bit offset 76543210 76543210 76543210 76543210
binary 00001010 00001011 00001100 00001101
hex 0a 0b 0c 0d
In both cases above, we can read from left to right and the number is 0x0a0b0c0d.
在小字节序机器上跑测试例1:
- int value = 0x12345678;
- union ValueT
- {
- int value;
- char data[4];
- } a;
- a.value = 0x12345678;
- printf("value is 0x%x\n", a.value);
- printf("address is %p, 0x%x\n",&a.data[0], a.data[0]);
- printf("address is %p, 0x%x\n",&a.data[1], a.data[1]);
- printf("address is %p, 0x%x\n",&a.data[2], a.data[2]);
- printf("address is %p, 0x%x\n",&a.data[3], a.data[3]);
- //value is 0x12345678
- //address is 0012FF6C, 0x78
- //address is 0012FF6D, 0x56
- //address is 0012FF6E, 0x34
- //address is 0012FF6F, 0x12
测试例2:
- struct bitfield{
- int ia:2;
- int ib:6;
- } field;
- field.ia=1;
- field.ib=4;
- char * c;
- c=(char *)&field;
- printf("%d\n",*c);
- // 17 = 000100 01
原帖地址:http://www.unixresources.net/linux/clf/program/archive/00/00/64/28/642822.html
亦可参考:http://bbs.chinaunix.net/viewthread.php?tid=823662&extra=&page=1
http://www.unixresources.net/linux/clf/linuxK/archive/00/00/63/86/638637.html
Endianness of CPU
The CPU endianness is the byte and bit order in which it interprets multi-byte integers from on-chip registers, local bus, in-line cache, memory and so on.
Little endian CPUs include Intel and DEC. Big endian CPUs include Motorola 680x0, Sun Sparc and IBM (e.g., PowerPC). MIPs and ARM can be configured either way.
Endianness of Ethernet
Ethernet is big endian. This means the most significant byte of an integer field is placed at a lower wire byte address and transmitted/received in front of the least significant byte.
Endianness of IP
IP's byte order also is big endian. The bit endianness of IP inherits that of the CPU, and the NIC takes care of converting it from/to the bit transmission/reception order on the wire.
小端系统中的比特顺序和字节顺序
这次总算有原创的文章了,因为工作中比特顺序/字节顺序总是搞不清楚。正好昨天晚上和同事好好考论了一番,在这里总结一下。
1. 小端
在bitstream的定义中,经常见到这样的定义
exam{
A:18 bit stream left bit first
B: 14 bit stream left bit first
}
在小端(little endian)系统中,上述32bit被读入内存,memory map如下
------------------------------------------------------------------------------------
| A7 ... A0 | A15 ... A8 | B5 ... B0 A17 A16 | B13 ... B6 |
low address --------------------------------> highaddress
-------------------------------------------------------------------------------------
NOTE:该处A0代表线路上最先到达的bit,A17代表最后到达.
可见小端系统是一个移位性质的寄存器,先到达的bit放在byte内的高位地址。(所谓小端地址的定义是:most significantbyte in high address。所以 0x01 0x02 0x030x04,代表的数据是0x04030201.同样的道理,在字节内部,物理地址高的bit代表高位。所以如果一个binarystream在字节中从左到右的顺序是 10001010,那么它代表的byte数据应该是0x51,而不是0x8A.)
可见,属于同一个域A的数据在物理地址上面并不连续了。为了处理这个问题,我们必须把这32bit数据变换为小端Byte顺序,既
------------------------------------------------------------------------------------
| B13 ... B6 | B5 ... B0 A17 A16 | A15 ... A8 | A7 ... A0 |
low address --------------------------------> highaddress
-------------------------------------------------------------------------------------
这样一来,同一个域的数据在物理上就连续了。使用C语言bit field的定义
struct{
}
这样 B 对应了这个32bit结构的低14bits, A对应了高18bits。编译器只需要简单的截断移位就可以处理这两个域了。
2. 大端
大端系统正好相反,在byte顺序上是高位数据对应least significantbyte。在byte内部靠近高位地址的bit对应least significant bit.
数据到达内存的时候
------------------------------------------------------------------------------------
| A0 ... A7 | A8 ... A15 | A16 A17 B0 ... B5 | B6 ... B13 |
low address --------------------------------> highaddress
-------------------------------------------------------------------------------------
大段在物理地址上和传输顺序(文档描述)一模一样,比较容易理解。这也是大端结构设计的初衷。
于是只需要在bit field声明如下结构:
struct{
}
这样就一目了然了。
3.总结
这些内容如果不是经常使用非常容易混淆,因为小端需要有两个转换,首先是byte顺序,其次是bit顺序。使用的时候最好在pc上多做实验。