summaryrefslogtreecommitdiff
path: root/toxcore
diff options
context:
space:
mode:
Diffstat (limited to 'toxcore')
-rw-r--r--toxcore/Messenger.c5
-rw-r--r--toxcore/util.c37
-rw-r--r--toxcore/util.h5
3 files changed, 40 insertions, 7 deletions
diff --git a/toxcore/Messenger.c b/toxcore/Messenger.c
index 4841cbd9..eaf87179 100644
--- a/toxcore/Messenger.c
+++ b/toxcore/Messenger.c
@@ -2648,10 +2648,9 @@ uint32_t messenger_size(const Messenger *m)
2648 2648
2649static uint8_t *z_state_save_subheader(uint8_t *data, uint32_t len, uint16_t type) 2649static uint8_t *z_state_save_subheader(uint8_t *data, uint32_t len, uint16_t type)
2650{ 2650{
2651 memcpy(data, &len, sizeof(uint32_t)); 2651 host_to_lendian32(data, len);
2652 data += sizeof(uint32_t); 2652 data += sizeof(uint32_t);
2653 uint32_t temp = (MESSENGER_STATE_COOKIE_TYPE << 16) | type; 2653 host_to_lendian32(data, (host_tolendian16(MESSENGER_STATE_COOKIE_TYPE) << 16) | host_tolendian16(type));
2654 memcpy(data, &temp, sizeof(uint32_t));
2655 data += sizeof(uint32_t); 2654 data += sizeof(uint32_t);
2656 return data; 2655 return data;
2657} 2656}
diff --git a/toxcore/util.c b/toxcore/util.c
index ee4fa3b2..3d444b07 100644
--- a/toxcore/util.c
+++ b/toxcore/util.c
@@ -84,6 +84,35 @@ void host_to_net(uint8_t *num, uint16_t numbytes)
84 return; 84 return;
85} 85}
86 86
87uint16_t lendian_to_host16(uint16_t lendian)
88{
89#ifdef WORDS_BIGENDIAN
90 return (lendian << 8) | (lendian >> 8 );
91#else
92 return lendian;
93#endif
94}
95
96void host_to_lendian32(uint8_t *dest, uint32_t num)
97{
98#ifdef WORDS_BIGENDIAN
99 num = ((num << 8) & 0xFF00FF00 ) | ((num >> 8) & 0xFF00FF );
100 num = (num << 16) | (num >> 16);
101#endif
102 memcpy(dest, &num, sizeof(uint32_t));
103}
104
105void lendian_to_host32(uint32_t *dest, const uint8_t *lendian)
106{
107 uint32_t d;
108 memcpy(&d, lendian, sizeof(uint32_t));
109#ifdef WORDS_BIGENDIAN
110 d = ((d << 8) & 0xFF00FF00 ) | ((d >> 8) & 0xFF00FF );
111 d = (d << 16) | (d >> 16);
112#endif
113 *dest = d;
114}
115
87/* state load/save */ 116/* state load/save */
88int load_state(load_state_callback_func load_state_callback, void *outer, 117int load_state(load_state_callback_func load_state_callback, void *outer,
89 const uint8_t *data, uint32_t length, uint16_t cookie_inner) 118 const uint8_t *data, uint32_t length, uint16_t cookie_inner)
@@ -101,8 +130,8 @@ int load_state(load_state_callback_func load_state_callback, void *outer,
101 uint32_t size_head = sizeof(uint32_t) * 2; 130 uint32_t size_head = sizeof(uint32_t) * 2;
102 131
103 while (length >= size_head) { 132 while (length >= size_head) {
104 memcpy(&length_sub, data, sizeof(length_sub)); 133 lendian_to_host32(&length_sub, data);
105 memcpy(&cookie_type, data + sizeof(length_sub), sizeof(cookie_type)); 134 lendian_to_host32(&cookie_type, data + sizeof(length_sub));
106 data += size_head; 135 data += size_head;
107 length -= size_head; 136 length -= size_head;
108 137
@@ -114,7 +143,7 @@ int load_state(load_state_callback_func load_state_callback, void *outer,
114 return -1; 143 return -1;
115 } 144 }
116 145
117 if ((cookie_type >> 16) != cookie_inner) { 146 if (lendian_to_host16((cookie_type >> 16)) != cookie_inner) {
118 /* something is not matching up in a bad way, give up */ 147 /* something is not matching up in a bad way, give up */
119#ifdef DEBUG 148#ifdef DEBUG
120 fprintf(stderr, "state file garbeled: %04hx != %04hx\n", (cookie_type >> 16), cookie_inner); 149 fprintf(stderr, "state file garbeled: %04hx != %04hx\n", (cookie_type >> 16), cookie_inner);
@@ -122,7 +151,7 @@ int load_state(load_state_callback_func load_state_callback, void *outer,
122 return -1; 151 return -1;
123 } 152 }
124 153
125 type = cookie_type & 0xFFFF; 154 type = lendian_to_host16(cookie_type & 0xFFFF);
126 155
127 if (-1 == load_state_callback(outer, data, length_sub, type)) 156 if (-1 == load_state_callback(outer, data, length_sub, type))
128 return -1; 157 return -1;
diff --git a/toxcore/util.h b/toxcore/util.h
index 7992a985..e90eee0f 100644
--- a/toxcore/util.h
+++ b/toxcore/util.h
@@ -42,6 +42,11 @@ uint32_t id_copy(uint8_t *dest, const uint8_t *src); /* return value is CLIENT_I
42void host_to_net(uint8_t *num, uint16_t numbytes); 42void host_to_net(uint8_t *num, uint16_t numbytes);
43#define net_to_host(x, y) host_to_net(x, y) 43#define net_to_host(x, y) host_to_net(x, y)
44 44
45uint16_t lendian_to_host16(uint16_t lendian);
46#define host_tolendian16(x) lendian_to_host16(x)
47
48void host_to_lendian32(uint8_t *dest, uint32_t num);
49
45/* state load/save */ 50/* state load/save */
46typedef int (*load_state_callback_func)(void *outer, const uint8_t *data, uint32_t len, uint16_t type); 51typedef int (*load_state_callback_func)(void *outer, const uint8_t *data, uint32_t len, uint16_t type);
47int load_state(load_state_callback_func load_state_callback, void *outer, 52int load_state(load_state_callback_func load_state_callback, void *outer,