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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
|
// Copyright (c) 2017 Sandstorm Development Group, Inc. and contributors
// Licensed under the MIT License:
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
use capnp::message;
#[cfg(feature = "alloc")]
#[test]
fn canonicalize_succeeds_on_null_message() {
let segment: &[capnp::Word] = &[capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00)];
let segments = &[capnp::Word::words_to_bytes(segment)];
let segment_array = message::SegmentArray::new(segments);
let message = message::Reader::new(segment_array, Default::default());
assert!(message.is_canonical().unwrap());
let canonical_bytes = message.canonicalize().unwrap();
assert_eq!(&canonical_bytes[..], segment);
}
#[cfg(feature = "alloc")]
#[test]
fn dont_truncate_struct_too_far() {
let segment: &[capnp::Word] = &[
// Struct pointer, body immediately follows, three data words
capnp::word(0x00, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00),
// First data word
capnp::word(0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11),
// Second data word, all zero except most significant bit
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80),
// Third data word, all zero
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
];
let segments = &[capnp::Word::words_to_bytes(segment)];
let segment_array = message::SegmentArray::new(segments);
let message = message::Reader::new(segment_array, Default::default());
assert!(!message.is_canonical().unwrap());
let canonicalized = message.canonicalize().unwrap();
let canonical_segment: &[capnp::Word] = &[
capnp::word(0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00),
capnp::word(0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11, 0x11),
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80),
];
assert_eq!(&canonicalized[..], canonical_segment);
}
#[cfg(feature = "alloc")]
#[test]
fn dont_truncate_struct_list_too_far() {
let segment: &[capnp::Word] = &[
// Struct pointer, body immediately follows, one pointer
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00),
// List pointer, no offset, inline composite, three words long
capnp::word(0x01, 0x00, 0x00, 0x00, 0x1f, 0x00, 0x00, 0x00),
// Tag word, list has one element with three data words and no pointers
capnp::word(0x04, 0x00, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00),
// First data word
capnp::word(0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22),
// Second data word, all zero except most significant bit
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80),
// Third data word, all zero
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
];
let segments = &[capnp::Word::words_to_bytes(segment)];
let segment_array = message::SegmentArray::new(segments);
let message = message::Reader::new(segment_array, Default::default());
assert!(!message.is_canonical().unwrap());
let canonicalized = message.canonicalize().unwrap();
let canonical_segment: &[capnp::Word] = &[
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00),
capnp::word(0x01, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00),
capnp::word(0x04, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00),
capnp::word(0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22, 0x22),
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x80),
];
assert_eq!(&canonicalized[..], canonical_segment);
}
#[test]
fn canonical_non_null_empty_struct_field() {
let segment: &[capnp::Word] = &[
// Struct pointer, body immediately follows, two pointer fields, no data.
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00),
// First pointer field, struct, offset of 1, data size 1, no pointers.
capnp::word(0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00),
// Non-null pointer to empty struct.
capnp::word(0xfc, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00),
// Body of struct filled with non-zero data.
capnp::word(0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee),
];
let segments = &[capnp::Word::words_to_bytes(segment)];
let segment_array = message::SegmentArray::new(segments);
let message = message::Reader::new(segment_array, Default::default());
assert!(message.is_canonical().unwrap());
}
#[test]
fn pointer_to_empty_struct_preorder_not_canonical() {
let segment: &[capnp::Word] = &[
// Struct pointer, body immediately follows, two pointer fields, no data.
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00),
// First pointer field, struct, offset of 1, data size 1, no pointers.
capnp::word(0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00),
// Non-null pointer to empty struct. Offset puts it in "preorder". Would need to have
// an offset of -1 to be canonical.
capnp::word(0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
// Body of struct filled with non-zero data.
capnp::word(0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee, 0xee),
];
let segments = &[capnp::Word::words_to_bytes(segment)];
let segment_array = message::SegmentArray::new(segments);
let message = message::Reader::new(segment_array, Default::default());
assert!(!message.is_canonical().unwrap());
}
#[test]
fn is_canonical_requires_pointer_preorder() {
let segment: &[capnp::Word] = &[
//Struct pointer, data immediately follows, two pointer fields, no data
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00),
//Pointer field 1, pointing to the last entry, data size 1, no pointer
capnp::word(0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00),
//Pointer field 2, pointing to the next entry, data size 2, no pointer
capnp::word(0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00),
//Data for field 2
capnp::word(0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07),
//Data for field 1
capnp::word(0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00),
];
let segments = &[capnp::Word::words_to_bytes(segment)];
let segment_array = message::SegmentArray::new(segments);
let message = message::Reader::new(segment_array, Default::default());
assert!(!message.is_canonical().unwrap());
}
#[test]
fn is_canonical_requires_dense_packing() {
let segment: &[capnp::Word] = &[
//Struct pointer, data after a gap
capnp::word(0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00),
//The gap
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
//Data for field 1
capnp::word(0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07),
];
let segments = &[capnp::Word::words_to_bytes(segment)];
let segment_array = message::SegmentArray::new(segments);
let message = message::Reader::new(segment_array, Default::default());
assert!(!message.is_canonical().unwrap());
}
#[cfg(feature = "alloc")]
#[test]
fn simple_multisegment_message() {
let segment0: &[capnp::Word] = &[
//Far pointer to next segment
capnp::word(0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00),
];
let segment1: &[capnp::Word] = &[
//Struct pointer (needed to make the far pointer legal)
capnp::word(0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00),
//Dummy data
capnp::word(0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07),
];
let segments = &[
capnp::Word::words_to_bytes(segment0),
capnp::Word::words_to_bytes(segment1),
];
let segment_array = message::SegmentArray::new(segments);
let message = message::Reader::new(segment_array, Default::default());
assert!(!message.is_canonical().unwrap());
let canonicalized = message.canonicalize().unwrap();
let canonical_segment: &[capnp::Word] = &[
capnp::word(0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00),
capnp::word(0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07),
];
assert_eq!(&canonicalized[..], canonical_segment);
}
#[cfg(feature = "alloc")]
#[test]
fn multisegment_only_first_segment_used() {
// A segment with a canonicalized struct.
let segment0: &[capnp::Word] = &[
capnp::word(0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00),
capnp::word(0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07),
];
let segment1: &[capnp::Word] = &[capnp::word(0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00)];
let segments = &[
capnp::Word::words_to_bytes(segment0),
capnp::Word::words_to_bytes(segment1),
];
let segment_array = message::SegmentArray::new(segments);
let message = message::Reader::new(segment_array, Default::default());
assert!(!message.is_canonical().unwrap());
let canonicalized = message.canonicalize().unwrap();
let canonical_segment: &[capnp::Word] = &[
capnp::word(0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00),
capnp::word(0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07),
];
assert_eq!(&canonicalized[..], canonical_segment);
}
#[test]
fn is_canonical_requires_truncation_of_0_valued_struct_fields() {
let segment: &[capnp::Word] = &[
//Struct pointer, data immediately follows
capnp::word(0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00),
//Default data value, should have been truncated
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
];
let segments = &[capnp::Word::words_to_bytes(segment)];
let segment_array = message::SegmentArray::new(segments);
let message = message::Reader::new(segment_array, Default::default());
assert!(!message.is_canonical().unwrap());
}
#[test]
fn is_canonical_rejects_unused_trailing_words() {
let segment: &[capnp::Word] = &[
// Struct pointer, data in next word
capnp::word(0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00),
// Data section of struct
capnp::word(0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07),
// Trailing zero word
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
];
let segments = &[capnp::Word::words_to_bytes(segment)];
let segment_array = message::SegmentArray::new(segments);
let message = message::Reader::new(segment_array, Default::default());
assert!(!message.is_canonical().unwrap());
}
#[cfg(feature = "alloc")]
#[test]
fn empty_inline_composite_list_of_0_sized_structs() {
let segment: &[capnp::Word] = &[
// Struct pointer, pointer in next word
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00),
// List pointer, inline composite, zero words long
capnp::word(0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x00),
// Tag word
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
];
let segments = &[capnp::Word::words_to_bytes(segment)];
let segment_array = message::SegmentArray::new(segments);
let message = message::Reader::new(segment_array, Default::default());
assert!(message.is_canonical().unwrap());
let canonical_words = message.canonicalize().unwrap();
assert_eq!(segment, &canonical_words[..]);
}
#[cfg(feature = "alloc")]
#[test]
fn inline_composite_list_with_void_list() {
let segment: &[capnp::Word] = &[
// List, inline composite
capnp::word(0x01, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00),
// One element, one pointer
capnp::word(0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00),
// List of 1 VOID
capnp::word(0x01, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00),
];
let segments = &[capnp::Word::words_to_bytes(segment)];
let segment_array = message::SegmentArray::new(segments);
let message = message::Reader::new(segment_array, Default::default());
assert!(message.is_canonical().unwrap());
let canonical_words = message.canonicalize().unwrap();
assert_eq!(segment, &canonical_words[..]);
}
#[test]
fn is_canonical_rejects_inline_composite_list_with_inaccurate_word_length() {
let segment: &[capnp::Word] = &[
// Struct pointer, no offset, pointer section has two entries
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00),
// List pointer, offset of one, inline composite, two words long
// (The list only needs to be one word long to hold its actual elements;
// therefore this message is not canonical.)
capnp::word(0x05, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00),
// Struct pointer, offset two, data section has one word
capnp::word(0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00),
// Tag word, struct, one element, one word data section
capnp::word(0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00),
// Data section of struct element of list
capnp::word(0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07),
// Data section of struct field in top-level struct
capnp::word(0x07, 0x06, 0x05, 0x04, 0x03, 0x02, 0x01, 0x00),
];
let segments = &[capnp::Word::words_to_bytes(segment)];
let segment_array = message::SegmentArray::new(segments);
let message = message::Reader::new(segment_array, Default::default());
assert!(!message.is_canonical().unwrap());
}
#[cfg(feature = "alloc")]
#[test]
fn truncate_data_section_inline_composite() {
let segment: &[capnp::Word] = &[
capnp::word(0x01, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00),
capnp::word(0x04, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00),
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
capnp::word(0x01, 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00),
capnp::word(0x35, 0x35, 0x35, 0x2d, 0x31, 0x32, 0x31, 0x32),
capnp::word(0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
];
let segments = &[capnp::Word::words_to_bytes(segment)];
let segment_array = message::SegmentArray::new(segments);
let message = message::Reader::new(segment_array, Default::default());
assert!(!message.is_canonical().unwrap());
let canonical_words = message.canonicalize().unwrap();
let canonical_segments = &[capnp::Word::words_to_bytes(&canonical_words[..])];
let canonical_segment_array = message::SegmentArray::new(canonical_segments);
let canonical_message = message::Reader::new(canonical_segment_array, Default::default());
assert!(canonical_message.is_canonical().unwrap());
}
#[cfg(feature = "alloc")]
#[test]
fn truncate_pointer_section_inline_composite() {
let segment: &[capnp::Word] = &[
capnp::word(0x01, 0x00, 0x00, 0x00, 0x27, 0x00, 0x00, 0x00),
capnp::word(0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00),
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
capnp::word(0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa),
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
];
let segments = &[capnp::Word::words_to_bytes(segment)];
let segment_array = message::SegmentArray::new(segments);
let message = message::Reader::new(segment_array, Default::default());
assert!(!message.is_canonical().unwrap());
let canonical_words = message.canonicalize().unwrap();
let canonical_segments = &[capnp::Word::words_to_bytes(&canonical_words[..])];
let canonical_segment_array = message::SegmentArray::new(canonical_segments);
let canonical_message = message::Reader::new(canonical_segment_array, Default::default());
assert!(canonical_message.is_canonical().unwrap());
let expected_canonical_words: &[capnp::Word] = &[
capnp::word(0x01, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00),
capnp::word(0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00),
capnp::word(0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
capnp::word(0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa, 0xaa),
];
assert_eq!(expected_canonical_words, &canonical_words[..]);
}
#[cfg(feature = "alloc")]
#[test]
fn list_padding_must_be_zero() {
let segment: &[capnp::Word] = &[
// List of three single-byte elements
capnp::word(0x01, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00),
// Fourth byte is also nonzero, so this list is not canonical
capnp::word(0x01, 0x02, 0x03, 0x01, 0x00, 0x00, 0x00, 0x00),
];
let segments = &[capnp::Word::words_to_bytes(segment)];
let segment_array = message::SegmentArray::new(segments);
let message = message::Reader::new(segment_array, Default::default());
assert!(!message.is_canonical().unwrap());
let canonical_words = message.canonicalize().unwrap();
let canonical_segments = &[capnp::Word::words_to_bytes(&canonical_words[..])];
let canonical_segment_array = message::SegmentArray::new(canonical_segments);
let canonical_message = message::Reader::new(canonical_segment_array, Default::default());
assert!(canonical_message.is_canonical().unwrap());
let expected_canonical_words: &[capnp::Word] = &[
capnp::word(0x01, 0x00, 0x00, 0x00, 0x1a, 0x00, 0x00, 0x00),
capnp::word(0x01, 0x02, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00),
];
assert_eq!(expected_canonical_words, &canonical_words[..]);
}
#[cfg(feature = "alloc")]
#[test]
fn bit_list_padding_must_be_zero() {
let segment: &[capnp::Word] = &[
// List of eleven single-bit elements
capnp::word(0x01, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00),
// Twelfth bit is nonzero, so list is not canonical
capnp::word(0xee, 0x0f, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
];
let segments = &[capnp::Word::words_to_bytes(segment)];
let segment_array = message::SegmentArray::new(segments);
let message = message::Reader::new(segment_array, Default::default());
assert!(!message.is_canonical().unwrap());
let canonical_words = message.canonicalize().unwrap();
let canonical_segments = &[capnp::Word::words_to_bytes(&canonical_words[..])];
let canonical_segment_array = message::SegmentArray::new(canonical_segments);
let canonical_message = message::Reader::new(canonical_segment_array, Default::default());
assert!(canonical_message.is_canonical().unwrap());
let expected_canonical_words: &[capnp::Word] = &[
capnp::word(0x01, 0x00, 0x00, 0x00, 0x59, 0x00, 0x00, 0x00),
capnp::word(0xee, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
];
assert_eq!(expected_canonical_words, &canonical_words[..]);
}
#[test]
fn out_of_bounds_zero_sized_list_returns_error() {
let segment: &[capnp::Word] = &[
// List pointer, offset out of bounds, elements are byte-sized, zero elements.
capnp::word(0x01, 0x00, 0x00, 0x01, 0x02, 0x00, 0x00, 0x00),
];
let segments = &[capnp::Word::words_to_bytes(segment)];
let segment_array = message::SegmentArray::new(segments);
let message = message::Reader::new(segment_array, Default::default());
assert!(message.is_canonical().is_err());
}
#[test]
fn out_of_bounds_zero_sized_void_list_returns_error() {
let segment: &[capnp::Word] = &[
// List pointer, offset out of bounds, elements have size zero, two elements.
capnp::word(0x01, 0x00, 0x00, 0x01, 0x10, 0x00, 0x00, 0x00),
];
let segments = &[capnp::Word::words_to_bytes(segment)];
let segment_array = message::SegmentArray::new(segments);
let message = message::Reader::new(segment_array, Default::default());
assert!(message.is_canonical().is_err());
}
#[test]
fn far_pointer_to_same_segment() {
let segment: &[capnp::Word] = &[
// Far pointer to this same segment. Landing pad is two words, offset of one.
capnp::word(0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
// Landing pad. Again, points back to this same segment.
capnp::word(0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
// Tag word, describing struct with 2-word data section.
capnp::word(0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x00),
];
let segments = &[capnp::Word::words_to_bytes(segment)];
let segment_array = message::SegmentArray::new(segments);
let message = message::Reader::new(segment_array, Default::default());
assert!(!message.is_canonical().unwrap());
}
|