trema 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.mono.rant +4107 -0
- data/.rspec +1 -0
- data/.yardopts +4 -0
- data/Doxyfile +1679 -0
- data/GPL2 +339 -0
- data/Gemfile +22 -0
- data/Gemfile.lock +71 -0
- data/README.md +135 -0
- data/Rakefile +140 -0
- data/Rantfile +834 -0
- data/VERSION +1 -0
- data/build.rb +32 -0
- data/cruise.rb +389 -0
- data/features/example.dumper.feature +87 -0
- data/features/example.learning_switch.feature +39 -0
- data/features/example.list_switches.feature +38 -0
- data/features/example.message.echo_reply.feature +26 -0
- data/features/example.message.echo_request.feature +25 -0
- data/features/example.message.features_request.feature +84 -0
- data/features/example.message.hello.feature +25 -0
- data/features/example.message.set_config.feature +27 -0
- data/features/example.multi_learning_switch.feature +135 -0
- data/features/example.packetin_filter_config.feature +91 -0
- data/features/example.repeater_hub.feature +49 -0
- data/features/example.switch_monitor.feature +39 -0
- data/features/packetin_filter.feature +49 -0
- data/features/step_definitions/kill_steps.rb +30 -0
- data/features/step_definitions/log_steps.rb +90 -0
- data/features/step_definitions/misc_steps.rb +64 -0
- data/features/step_definitions/off_steps.rb +30 -0
- data/features/step_definitions/run_steps.rb +91 -0
- data/features/step_definitions/send_packets_steps.rb +42 -0
- data/features/step_definitions/show_stats_steps.rb +43 -0
- data/features/step_definitions/stats_steps.rb +39 -0
- data/features/support/env.rb +75 -0
- data/features/support/hooks.rb +8 -0
- data/features/switch_manager.feature +35 -0
- data/features/trema-config.feature +68 -0
- data/features/trema.dump_flows.feature +25 -0
- data/features/trema.feature +25 -0
- data/features/trema.kill.feature +53 -0
- data/features/trema.killall.feature +30 -0
- data/features/trema.reset_stats.feature +14 -0
- data/features/trema.run.feature +46 -0
- data/features/trema.send_packets.feature +56 -0
- data/features/trema.show_stats.feature +67 -0
- data/features/tutorial.hello_trema.feature +27 -0
- data/features/tutorial.packet_in.feature +47 -0
- data/features/tutorial.switch_info.feature +55 -0
- data/ruby/.gitignore +4 -0
- data/ruby/blocker.rb +78 -0
- data/ruby/extconf.rb +71 -0
- data/ruby/sub-process.rb +291 -0
- data/ruby/trema/action-common.c +60 -0
- data/ruby/trema/action-common.h +42 -0
- data/ruby/trema/action-enqueue.c +161 -0
- data/ruby/trema/action-enqueue.h +40 -0
- data/ruby/trema/action-output.c +169 -0
- data/ruby/trema/action-output.h +42 -0
- data/ruby/trema/action-set-dl-dst.c +131 -0
- data/ruby/trema/action-set-dl-dst.h +44 -0
- data/ruby/trema/action-set-dl-src.c +131 -0
- data/ruby/trema/action-set-dl-src.h +44 -0
- data/ruby/trema/action-set-nw-dst.c +135 -0
- data/ruby/trema/action-set-nw-dst.h +42 -0
- data/ruby/trema/action-set-nw-src.c +140 -0
- data/ruby/trema/action-set-nw-src.h +42 -0
- data/ruby/trema/action-set-nw-tos.c +124 -0
- data/ruby/trema/action-set-nw-tos.h +42 -0
- data/ruby/trema/action-set-tp-dst.c +122 -0
- data/ruby/trema/action-set-tp-dst.h +42 -0
- data/ruby/trema/action-set-tp-src.c +124 -0
- data/ruby/trema/action-set-tp-src.h +42 -0
- data/ruby/trema/action-set-vlan-pcp.c +128 -0
- data/ruby/trema/action-set-vlan-pcp.h +42 -0
- data/ruby/trema/action-set-vlan-vid.c +125 -0
- data/ruby/trema/action-set-vlan-vid.h +42 -0
- data/ruby/trema/action-strip-vlan.c +81 -0
- data/ruby/trema/action-strip-vlan.h +42 -0
- data/ruby/trema/action-vendor.c +121 -0
- data/ruby/trema/action-vendor.h +42 -0
- data/ruby/trema/aggregate-stats-reply.rb +70 -0
- data/ruby/trema/app.rb +112 -0
- data/ruby/trema/barrier-reply.c +99 -0
- data/ruby/trema/barrier-reply.h +46 -0
- data/ruby/trema/barrier-request.c +108 -0
- data/ruby/trema/barrier-request.h +44 -0
- data/ruby/trema/cli.rb +269 -0
- data/ruby/trema/command.rb +40 -0
- data/ruby/trema/command/dump_flows.rb +62 -0
- data/ruby/trema/command/kill.rb +71 -0
- data/ruby/trema/command/killall.rb +56 -0
- data/ruby/trema/command/reset_stats.rb +61 -0
- data/ruby/trema/command/ruby.rb +55 -0
- data/ruby/trema/command/run.rb +120 -0
- data/ruby/trema/command/send_packets.rb +130 -0
- data/ruby/trema/command/shell.rb +61 -0
- data/ruby/trema/command/show_stats.rb +84 -0
- data/ruby/trema/command/usage.rb +61 -0
- data/ruby/trema/command/version.rb +39 -0
- data/ruby/trema/controller.c +595 -0
- data/ruby/trema/controller.h +44 -0
- data/ruby/trema/controller.rb +81 -0
- data/ruby/trema/daemon.rb +167 -0
- data/ruby/trema/dsl.rb +34 -0
- data/ruby/trema/dsl/configuration.rb +153 -0
- data/ruby/trema/dsl/context.rb +71 -0
- data/ruby/trema/dsl/link.rb +41 -0
- data/ruby/trema/dsl/parser.rb +70 -0
- data/ruby/trema/dsl/run.rb +49 -0
- data/ruby/trema/dsl/runner.rb +165 -0
- data/ruby/trema/dsl/stanza.rb +53 -0
- data/ruby/trema/dsl/switch.rb +78 -0
- data/ruby/trema/dsl/syntax-error.rb +33 -0
- data/ruby/trema/dsl/syntax.rb +109 -0
- data/ruby/trema/dsl/vhost.rb +108 -0
- data/ruby/trema/dsl/vswitch.rb +47 -0
- data/ruby/trema/echo-reply.c +107 -0
- data/ruby/trema/echo-reply.h +42 -0
- data/ruby/trema/echo-request.c +140 -0
- data/ruby/trema/echo-request.h +42 -0
- data/ruby/trema/error.c +253 -0
- data/ruby/trema/error.h +44 -0
- data/ruby/trema/exact-match.rb +36 -0
- data/ruby/trema/executables.rb +95 -0
- data/ruby/trema/features-reply.c +238 -0
- data/ruby/trema/features-reply.h +60 -0
- data/ruby/trema/features-request.c +109 -0
- data/ruby/trema/features-request.h +44 -0
- data/ruby/trema/flow-removed.c +275 -0
- data/ruby/trema/flow-removed.h +46 -0
- data/ruby/trema/flow-stats-reply.rb +109 -0
- data/ruby/trema/flow.rb +56 -0
- data/ruby/trema/get-config-reply.c +159 -0
- data/ruby/trema/get-config-reply.h +52 -0
- data/ruby/trema/get-config-request.c +107 -0
- data/ruby/trema/get-config-request.h +44 -0
- data/ruby/trema/hello.c +110 -0
- data/ruby/trema/hello.h +44 -0
- data/ruby/trema/host.rb +257 -0
- data/ruby/trema/ip.rb +101 -0
- data/ruby/trema/link.rb +176 -0
- data/ruby/trema/list-switches-reply.c +46 -0
- data/ruby/trema/list-switches-reply.h +40 -0
- data/ruby/trema/logger.c +162 -0
- data/ruby/trema/logger.h +44 -0
- data/ruby/trema/mac.rb +151 -0
- data/ruby/trema/match.c +594 -0
- data/ruby/trema/match.h +36 -0
- data/ruby/trema/monkey-patch/integer.rb +35 -0
- data/ruby/trema/monkey-patch/integer/base-conversions.rb +36 -0
- data/ruby/trema/monkey-patch/integer/ranges.rb +51 -0
- data/ruby/trema/monkey-patch/module.rb +33 -0
- data/ruby/trema/monkey-patch/module/deprecation.rb +41 -0
- data/ruby/trema/monkey-patch/string.rb +33 -0
- data/ruby/trema/monkey-patch/string/inflectors.rb +54 -0
- data/ruby/trema/network-component.rb +153 -0
- data/ruby/trema/ofctl.rb +62 -0
- data/ruby/trema/open-vswitch.rb +154 -0
- data/ruby/trema/openflow-error.c +191 -0
- data/ruby/trema/openflow-error.h +53 -0
- data/ruby/trema/openflow-switch.rb +88 -0
- data/ruby/trema/ordered-hash.rb +74 -0
- data/ruby/trema/packet-queue.rb +178 -0
- data/ruby/trema/packet_in.c +736 -0
- data/ruby/trema/packet_in.h +46 -0
- data/ruby/trema/packetin-filter.rb +126 -0
- data/ruby/trema/path.rb +135 -0
- data/ruby/trema/phost.rb +69 -0
- data/ruby/trema/port-mod.c +226 -0
- data/ruby/trema/port-mod.h +36 -0
- data/ruby/trema/port-stats-reply.rb +111 -0
- data/ruby/trema/port-status.c +156 -0
- data/ruby/trema/port-status.h +45 -0
- data/ruby/trema/port.c +295 -0
- data/ruby/trema/port.h +47 -0
- data/ruby/trema/process.rb +76 -0
- data/ruby/trema/queue-get-config-reply.c +200 -0
- data/ruby/trema/queue-get-config-reply.h +47 -0
- data/ruby/trema/queue-get-config-request.c +141 -0
- data/ruby/trema/queue-get-config-request.h +44 -0
- data/ruby/trema/queue-stats-reply.rb +78 -0
- data/ruby/trema/set-config.c +171 -0
- data/ruby/trema/set-config.h +44 -0
- data/ruby/trema/shell.rb +39 -0
- data/ruby/trema/shell/down.rb +39 -0
- data/ruby/trema/shell/killall.rb +40 -0
- data/ruby/trema/shell/link.rb +61 -0
- data/ruby/trema/shell/reset_stats.rb +50 -0
- data/ruby/trema/shell/run.rb +67 -0
- data/ruby/trema/shell/send_packets.rb +42 -0
- data/ruby/trema/shell/show_stats.rb +49 -0
- data/ruby/trema/shell/up.rb +43 -0
- data/ruby/trema/shell/vhost.rb +44 -0
- data/ruby/trema/shell/vswitch.rb +49 -0
- data/ruby/trema/stats-helper.rb +65 -0
- data/ruby/trema/stats-reply.c +483 -0
- data/ruby/trema/stats-reply.h +53 -0
- data/ruby/trema/stats-request.c +634 -0
- data/ruby/trema/stats-request.h +42 -0
- data/ruby/trema/switch-daemon.rb +74 -0
- data/ruby/trema/switch-disconnected.c +40 -0
- data/ruby/trema/switch-disconnected.h +38 -0
- data/ruby/trema/switch-manager.rb +121 -0
- data/ruby/trema/switch.rb +37 -0
- data/ruby/trema/table-stats-reply.rb +87 -0
- data/ruby/trema/timers.rb +97 -0
- data/ruby/trema/trema.c +122 -0
- data/ruby/trema/tremashark.rb +39 -0
- data/ruby/trema/util.rb +84 -0
- data/ruby/trema/vendor-request.c +193 -0
- data/ruby/trema/vendor-request.h +44 -0
- data/ruby/trema/vendor-stats-reply.rb +62 -0
- data/ruby/trema/vendor.c +152 -0
- data/ruby/trema/vendor.h +52 -0
- data/ruby/trema/version.rb +30 -0
- data/spec/spec_helper.rb +153 -0
- data/spec/support/openflow-message.rb +94 -0
- data/spec/trema/action-enqueue_spec.rb +100 -0
- data/spec/trema/action-output_spec.rb +116 -0
- data/spec/trema/action-set-dl-dst_spec.rb +95 -0
- data/spec/trema/action-set-dl-src_spec.rb +92 -0
- data/spec/trema/action-set-nw-dst_spec.rb +96 -0
- data/spec/trema/action-set-nw-src_spec.rb +97 -0
- data/spec/trema/action-set-nw-tos_spec.rb +88 -0
- data/spec/trema/action-set-tp-dst_spec.rb +88 -0
- data/spec/trema/action-set-tp-src_spec.rb +88 -0
- data/spec/trema/action-set-vlan-pcp_spec.rb +91 -0
- data/spec/trema/action-set-vlan-vid_spec.rb +91 -0
- data/spec/trema/action-strip-vlan_spec.rb +57 -0
- data/spec/trema/action-vendor_spec.rb +90 -0
- data/spec/trema/app_spec.rb +90 -0
- data/spec/trema/barrier-reply_spec.rb +45 -0
- data/spec/trema/barrier-request_spec.rb +83 -0
- data/spec/trema/cli_spec.rb +160 -0
- data/spec/trema/controller_spec.rb +100 -0
- data/spec/trema/dsl/configuration_spec.rb +122 -0
- data/spec/trema/dsl/link_spec.rb +54 -0
- data/spec/trema/dsl/run_spec.rb +78 -0
- data/spec/trema/dsl/runner_spec.rb +239 -0
- data/spec/trema/dsl/switch_spec.rb +77 -0
- data/spec/trema/dsl/syntax_spec.rb +121 -0
- data/spec/trema/dsl/vhost_spec.rb +148 -0
- data/spec/trema/dsl/vswitch_spec.rb +90 -0
- data/spec/trema/echo-reply_spec.rb +49 -0
- data/spec/trema/echo-request_spec.rb +75 -0
- data/spec/trema/error_spec.rb +142 -0
- data/spec/trema/executables_spec.rb +75 -0
- data/spec/trema/features-reply_spec.rb +57 -0
- data/spec/trema/features-request_spec.rb +66 -0
- data/spec/trema/flow-removed_spec.rb +146 -0
- data/spec/trema/get-config-reply_spec.rb +43 -0
- data/spec/trema/get-config-request_spec.rb +82 -0
- data/spec/trema/hello_spec.rb +49 -0
- data/spec/trema/host_spec.rb +193 -0
- data/spec/trema/link_spec.rb +64 -0
- data/spec/trema/list-switches-reply_spec.rb +48 -0
- data/spec/trema/logger_spec.rb +48 -0
- data/spec/trema/mac_spec.rb +115 -0
- data/spec/trema/match_spec.rb +113 -0
- data/spec/trema/open-vswitch_spec.rb +123 -0
- data/spec/trema/openflow-error_spec.rb +141 -0
- data/spec/trema/openflow-switch_spec.rb +56 -0
- data/spec/trema/packet-in_spec.rb +168 -0
- data/spec/trema/packet-out_spec.rb +128 -0
- data/spec/trema/packetin-filter_spec.rb +41 -0
- data/spec/trema/port-mod_spec.rb +101 -0
- data/spec/trema/port-status_spec.rb +108 -0
- data/spec/trema/port_spec.rb +61 -0
- data/spec/trema/process_spec.rb +71 -0
- data/spec/trema/queue-get-config-reply_spec.rb +66 -0
- data/spec/trema/queue-get-config-request_spec.rb +69 -0
- data/spec/trema/set-config_spec.rb +80 -0
- data/spec/trema/shell/vhost_spec.rb +57 -0
- data/spec/trema/shell/vswitch_spec.rb +89 -0
- data/spec/trema/stats-reply_spec.rb +306 -0
- data/spec/trema/stats-request_spec.rb +151 -0
- data/spec/trema/switch-disconnected_spec.rb +58 -0
- data/spec/trema/switch-manager_spec.rb +43 -0
- data/spec/trema/tremashark_spec.rb +41 -0
- data/spec/trema/util_spec.rb +93 -0
- data/spec/trema/vendor-request_spec.rb +79 -0
- data/src/examples/cbench_switch/README +21 -0
- data/src/examples/cbench_switch/cbench-switch.rb +39 -0
- data/src/examples/cbench_switch/cbench_switch.c +68 -0
- data/src/examples/dumper/dumper.c +370 -0
- data/src/examples/dumper/dumper.conf +7 -0
- data/src/examples/dumper/dumper.rb +196 -0
- data/src/examples/hello_trema/README +13 -0
- data/src/examples/hello_trema/hello_trema.c +51 -0
- data/src/examples/hello_trema/hello_trema.conf +3 -0
- data/src/examples/hello_trema/hello_trema.rb +35 -0
- data/src/examples/learning_switch/README +15 -0
- data/src/examples/learning_switch/fdb.rb +112 -0
- data/src/examples/learning_switch/learning-switch.rb +88 -0
- data/src/examples/learning_switch/learning_switch.c +236 -0
- data/src/examples/learning_switch/learning_switch.conf +18 -0
- data/src/examples/list_switches/README +19 -0
- data/src/examples/list_switches/list-switches.rb +45 -0
- data/src/examples/list_switches/list_switches.c +81 -0
- data/src/examples/list_switches/list_switches.conf +15 -0
- data/src/examples/match_compare/match-compare.conf +30 -0
- data/src/examples/match_compare/match-compare.rb +99 -0
- data/src/examples/multi_learning_switch/README +14 -0
- data/src/examples/multi_learning_switch/multi-learning-switch.rb +96 -0
- data/src/examples/multi_learning_switch/multi_learning_switch.c +296 -0
- data/src/examples/multi_learning_switch/multi_learning_switch.conf +17 -0
- data/src/examples/openflow_message/README +11 -0
- data/src/examples/openflow_message/echo-reply.rb +59 -0
- data/src/examples/openflow_message/echo-request.rb +58 -0
- data/src/examples/openflow_message/echo_reply.c +70 -0
- data/src/examples/openflow_message/echo_request.c +70 -0
- data/src/examples/openflow_message/example.rb +63 -0
- data/src/examples/openflow_message/features-request.rb +97 -0
- data/src/examples/openflow_message/features_request.c +168 -0
- data/src/examples/openflow_message/hello.c +70 -0
- data/src/examples/openflow_message/hello.rb +58 -0
- data/src/examples/openflow_message/set-config.rb +59 -0
- data/src/examples/openflow_message/set_config.c +70 -0
- data/src/examples/packet_in/README +15 -0
- data/src/examples/packet_in/packet_in.c +55 -0
- data/src/examples/packet_in/packet_in.conf +15 -0
- data/src/examples/packet_in/packet_in.rb +34 -0
- data/src/examples/packetin_filter_config/README +12 -0
- data/src/examples/packetin_filter_config/add_filter.c +73 -0
- data/src/examples/packetin_filter_config/delete_filter.c +65 -0
- data/src/examples/packetin_filter_config/delete_filter_strict.c +75 -0
- data/src/examples/packetin_filter_config/dump_filter.c +65 -0
- data/src/examples/packetin_filter_config/dump_filter_strict.c +75 -0
- data/src/examples/packetin_filter_config/packetin_filter_config.c +134 -0
- data/src/examples/packetin_filter_config/packetin_filter_config.conf +7 -0
- data/src/examples/packetin_filter_config/utils.c +102 -0
- data/src/examples/packetin_filter_config/utils.h +42 -0
- data/src/examples/repeater_hub/README +8 -0
- data/src/examples/repeater_hub/repeater-hub.rb +43 -0
- data/src/examples/repeater_hub/repeater-hub_spec.rb +156 -0
- data/src/examples/repeater_hub/repeater_hub.c +83 -0
- data/src/examples/repeater_hub/repeater_hub.conf +28 -0
- data/src/examples/switch_info/README +13 -0
- data/src/examples/switch_info/switch_info.c +80 -0
- data/src/examples/switch_info/switch_info.conf +3 -0
- data/src/examples/switch_info/switch_info.rb +46 -0
- data/src/examples/switch_monitor/switch-monitor.conf +3 -0
- data/src/examples/switch_monitor/switch-monitor.rb +58 -0
- data/src/examples/switch_monitor/switch_monitor.c +154 -0
- data/src/examples/traffic_monitor/counter.c +74 -0
- data/src/examples/traffic_monitor/counter.h +48 -0
- data/src/examples/traffic_monitor/counter.rb +46 -0
- data/src/examples/traffic_monitor/fdb.c +76 -0
- data/src/examples/traffic_monitor/fdb.h +50 -0
- data/src/examples/traffic_monitor/fdb.rb +44 -0
- data/src/examples/traffic_monitor/traffic-monitor.rb +100 -0
- data/src/examples/traffic_monitor/traffic_monitor.c +163 -0
- data/src/examples/traffic_monitor/traffic_monitor.conf +16 -0
- data/src/lib/arp.h +61 -0
- data/src/lib/bool.h +49 -0
- data/src/lib/buffer.c +305 -0
- data/src/lib/buffer.h +56 -0
- data/src/lib/byteorder.c +547 -0
- data/src/lib/byteorder.h +110 -0
- data/src/lib/checks.h +42 -0
- data/src/lib/daemon.c +302 -0
- data/src/lib/daemon.h +42 -0
- data/src/lib/doubly_linked_list.c +281 -0
- data/src/lib/doubly_linked_list.h +88 -0
- data/src/lib/ether.c +48 -0
- data/src/lib/ether.h +94 -0
- data/src/lib/etherip.h +46 -0
- data/src/lib/event_handler.c +389 -0
- data/src/lib/event_handler.h +64 -0
- data/src/lib/hash_table.c +417 -0
- data/src/lib/hash_table.h +138 -0
- data/src/lib/icmp.h +74 -0
- data/src/lib/igmp.h +50 -0
- data/src/lib/ipv4.h +50 -0
- data/src/lib/linked_list.c +199 -0
- data/src/lib/linked_list.h +84 -0
- data/src/lib/log.c +402 -0
- data/src/lib/log.h +78 -0
- data/src/lib/match.h +84 -0
- data/src/lib/match_table.c +608 -0
- data/src/lib/match_table.h +51 -0
- data/src/lib/message_queue.c +143 -0
- data/src/lib/message_queue.h +61 -0
- data/src/lib/messenger.c +1714 -0
- data/src/lib/messenger.h +145 -0
- data/src/lib/openflow_application_interface.c +1673 -0
- data/src/lib/openflow_application_interface.h +329 -0
- data/src/lib/openflow_message.c +4051 -0
- data/src/lib/openflow_message.h +288 -0
- data/src/lib/openflow_service_interface.h +59 -0
- data/src/lib/packet_info.c +230 -0
- data/src/lib/packet_info.h +209 -0
- data/src/lib/packet_parser.c +502 -0
- data/src/lib/packetin_filter_interface.c +294 -0
- data/src/lib/packetin_filter_interface.h +127 -0
- data/src/lib/persistent_storage.c +480 -0
- data/src/lib/persistent_storage.h +46 -0
- data/src/lib/stat.c +213 -0
- data/src/lib/stat.h +44 -0
- data/src/lib/tcp.h +67 -0
- data/src/lib/timer.c +350 -0
- data/src/lib/timer.h +53 -0
- data/src/lib/trema.c +710 -0
- data/src/lib/trema.h +79 -0
- data/src/lib/trema_private.c +177 -0
- data/src/lib/trema_private.h +60 -0
- data/src/lib/trema_wrapper.c +56 -0
- data/src/lib/trema_wrapper.h +64 -0
- data/src/lib/udp.h +43 -0
- data/src/lib/utility.c +515 -0
- data/src/lib/utility.h +67 -0
- data/src/lib/wrapper.c +100 -0
- data/src/lib/wrapper.h +76 -0
- data/src/packetin_filter/README +17 -0
- data/src/packetin_filter/packetin_filter.c +575 -0
- data/src/switch_manager/README +20 -0
- data/src/switch_manager/cookie_table.c +292 -0
- data/src/switch_manager/cookie_table.h +72 -0
- data/src/switch_manager/dpid_table.c +110 -0
- data/src/switch_manager/dpid_table.h +46 -0
- data/src/switch_manager/management_interface.h +44 -0
- data/src/switch_manager/ofpmsg_recv.c +482 -0
- data/src/switch_manager/ofpmsg_recv.h +42 -0
- data/src/switch_manager/ofpmsg_send.c +235 -0
- data/src/switch_manager/ofpmsg_send.h +50 -0
- data/src/switch_manager/secure_channel_listener.c +281 -0
- data/src/switch_manager/secure_channel_listener.h +42 -0
- data/src/switch_manager/secure_channel_receiver.c +126 -0
- data/src/switch_manager/secure_channel_receiver.h +43 -0
- data/src/switch_manager/secure_channel_sender.c +126 -0
- data/src/switch_manager/secure_channel_sender.h +43 -0
- data/src/switch_manager/service_interface.c +181 -0
- data/src/switch_manager/service_interface.h +46 -0
- data/src/switch_manager/switch.c +538 -0
- data/src/switch_manager/switch.h +51 -0
- data/src/switch_manager/switch_manager.c +448 -0
- data/src/switch_manager/switch_manager.h +63 -0
- data/src/switch_manager/switchinfo.h +72 -0
- data/src/switch_manager/xid_table.c +184 -0
- data/src/switch_manager/xid_table.h +56 -0
- data/src/tremashark/README +78 -0
- data/src/tremashark/packet_capture.c +357 -0
- data/src/tremashark/pcap_private.h +47 -0
- data/src/tremashark/pcap_queue.c +197 -0
- data/src/tremashark/pcap_queue.h +58 -0
- data/src/tremashark/plugin/.gitignore +6 -0
- data/src/tremashark/plugin/packet-trema/.gitignore +5 -0
- data/src/tremashark/plugin/packet-trema/Makefile +77 -0
- data/src/tremashark/plugin/packet-trema/Makefile.am +110 -0
- data/src/tremashark/plugin/packet-trema/Makefile.common +31 -0
- data/src/tremashark/plugin/packet-trema/moduleinfo.h +41 -0
- data/src/tremashark/plugin/packet-trema/packet-trema.c +1659 -0
- data/src/tremashark/plugin/packet-trema/plugin.c +31 -0
- data/src/tremashark/plugin/user_dlts +2 -0
- data/src/tremashark/queue.c +168 -0
- data/src/tremashark/queue.h +60 -0
- data/src/tremashark/stdin_relay.c +257 -0
- data/src/tremashark/syslog_relay.c +247 -0
- data/src/tremashark/tremashark.c +556 -0
- data/trema +93 -0
- data/trema-config +61 -0
- data/unittests/buffer_stubs.c +74 -0
- data/unittests/cmockery_trema.c +123 -0
- data/unittests/cmockery_trema.h +96 -0
- data/unittests/lib/buffer_test.c +370 -0
- data/unittests/lib/byteorder_test.c +1717 -0
- data/unittests/lib/daemon_test.c +664 -0
- data/unittests/lib/doubly_linked_list_test.c +346 -0
- data/unittests/lib/ether_test.c +127 -0
- data/unittests/lib/hash_table_test.c +278 -0
- data/unittests/lib/linked_list_test.c +343 -0
- data/unittests/lib/log_test.c +459 -0
- data/unittests/lib/match_table_test.c +1509 -0
- data/unittests/lib/message_queue_test.c +379 -0
- data/unittests/lib/messenger_test.c +438 -0
- data/unittests/lib/openflow_application_interface_test.c +3488 -0
- data/unittests/lib/openflow_message_test.c +7337 -0
- data/unittests/lib/packet_info_test.c +544 -0
- data/unittests/lib/packet_parser_test.c +703 -0
- data/unittests/lib/packetin_filter_interface_test.c +723 -0
- data/unittests/lib/persistent_storage_test.c +802 -0
- data/unittests/lib/stat_test.c +291 -0
- data/unittests/lib/test_packets/arp_rep.cap +0 -0
- data/unittests/lib/test_packets/arp_req.cap +0 -0
- data/unittests/lib/test_packets/icmp_echo_rep.cap +0 -0
- data/unittests/lib/test_packets/icmp_echo_req.cap +0 -0
- data/unittests/lib/test_packets/igmp_query_v2.cap +0 -0
- data/unittests/lib/test_packets/ipx.cap +0 -0
- data/unittests/lib/test_packets/lldp.cap +0 -0
- data/unittests/lib/test_packets/lldp_over_ip.cap +0 -0
- data/unittests/lib/test_packets/tcp.cap +0 -0
- data/unittests/lib/test_packets/tcp_syn.cap +0 -0
- data/unittests/lib/test_packets/udp.cap +0 -0
- data/unittests/lib/test_packets/udp_frag_head.cap +0 -0
- data/unittests/lib/test_packets/udp_frag_next.cap +0 -0
- data/unittests/lib/test_packets/vtag_icmp_echo_rep.cap +0 -0
- data/unittests/lib/test_packets/vtag_icmp_echo_req.cap +0 -0
- data/unittests/lib/timer_test.c +248 -0
- data/unittests/lib/trema_private_test.c +323 -0
- data/unittests/lib/trema_test.c +985 -0
- data/unittests/lib/utility_test.c +628 -0
- data/unittests/lib/wrapper_test.c +201 -0
- data/unittests/packetin_filter/packetin_filter_test.c +477 -0
- data/unittests/switch_manager/switch_manager_test.c +1178 -0
- data/unittests/wrapper_stubs.c +39 -0
- data/vendor/.gitignore +6 -0
- data/vendor/README +30 -0
- data/vendor/cmockery-20110428.tar.gz +0 -0
- data/vendor/oflops-0.03.tar.gz +0 -0
- data/vendor/oflops_no_snmp+1.0.0.patch +340 -0
- data/vendor/openflow-1.0.0.tar.gz +0 -0
- data/vendor/openflow.git.tar.gz +0 -0
- data/vendor/openvswitch-1.2.2.tar.gz +0 -0
- data/vendor/ruby-ifconfig-1.2/COPYING +340 -0
- data/vendor/ruby-ifconfig-1.2/Changelog +16 -0
- data/vendor/ruby-ifconfig-1.2/INSTALL +239 -0
- data/vendor/ruby-ifconfig-1.2/README +38 -0
- data/vendor/ruby-ifconfig-1.2/Rakefile +14 -0
- data/vendor/ruby-ifconfig-1.2/TODO +8 -0
- data/vendor/ruby-ifconfig-1.2/ifconfig_examples/darwin.txt +17 -0
- data/vendor/ruby-ifconfig-1.2/ifconfig_examples/dragonflybsd.txt +10 -0
- data/vendor/ruby-ifconfig-1.2/ifconfig_examples/dragonflybsd_netstat.txt +14 -0
- data/vendor/ruby-ifconfig-1.2/ifconfig_examples/freebsd.txt +17 -0
- data/vendor/ruby-ifconfig-1.2/ifconfig_examples/freebsd_netstat.txt +24 -0
- data/vendor/ruby-ifconfig-1.2/ifconfig_examples/linux.txt +60 -0
- data/vendor/ruby-ifconfig-1.2/ifconfig_examples/linux_ethernet.txt +20 -0
- data/vendor/ruby-ifconfig-1.2/ifconfig_examples/netbsd.txt +10 -0
- data/vendor/ruby-ifconfig-1.2/ifconfig_examples/openbsd.txt +36 -0
- data/vendor/ruby-ifconfig-1.2/ifconfig_examples/sunos.txt +10 -0
- data/vendor/ruby-ifconfig-1.2/lib/ifconfig.rb +71 -0
- data/vendor/ruby-ifconfig-1.2/lib/ifconfig/bsd/ifconfig.rb +72 -0
- data/vendor/ruby-ifconfig-1.2/lib/ifconfig/bsd/interface_types.rb +69 -0
- data/vendor/ruby-ifconfig-1.2/lib/ifconfig/bsd/network_types.rb +3 -0
- data/vendor/ruby-ifconfig-1.2/lib/ifconfig/common/ifconfig.rb +84 -0
- data/vendor/ruby-ifconfig-1.2/lib/ifconfig/common/interface_types.rb +130 -0
- data/vendor/ruby-ifconfig-1.2/lib/ifconfig/common/network_types.rb +49 -0
- data/vendor/ruby-ifconfig-1.2/lib/ifconfig/linux/ifconfig.rb +43 -0
- data/vendor/ruby-ifconfig-1.2/lib/ifconfig/linux/interface_types.rb +112 -0
- data/vendor/ruby-ifconfig-1.2/lib/ifconfig/linux/network_types.rb +55 -0
- data/vendor/ruby-ifconfig-1.2/lib/ifconfig/sunos/ifconfig.rb +38 -0
- data/vendor/ruby-ifconfig-1.2/lib/ifconfig/sunos/interface_types.rb +77 -0
- data/vendor/ruby-ifconfig-1.2/lib/ifconfig/sunos/network_types.rb +4 -0
- data/vendor/ruby-ifconfig-1.2/setup.rb +1306 -0
- data/vendor/ruby-ifconfig-1.2/test/test_bsd.rb +35 -0
- data/vendor/ruby-ifconfig-1.2/test/test_darwin.rb +33 -0
- data/vendor/ruby-ifconfig-1.2/test/test_dragonflybsd.rb +35 -0
- data/vendor/ruby-ifconfig-1.2/test/test_helper.rb +4 -0
- data/vendor/ruby-ifconfig-1.2/test/test_linux.rb +31 -0
- data/vendor/ruby-ifconfig-1.2/test/test_netbsd.rb +33 -0
- data/vendor/ruby-ifconfig-1.2/test/test_openbsd.rb +33 -0
- data/vendor/ruby-ifconfig-1.2/test/test_sunos.rb +35 -0
- data/vendor/ruby-ifconfig-1.2/test/unit/tc_darwin.rb +40 -0
- data/vendor/ruby-ifconfig-1.2/test/unit/tc_dragonflybsd.rb +39 -0
- data/vendor/ruby-ifconfig-1.2/test/unit/tc_freebsd.rb +40 -0
- data/vendor/ruby-ifconfig-1.2/test/unit/tc_linux.rb +49 -0
- data/vendor/ruby-ifconfig-1.2/test/unit/tc_netbsd.rb +39 -0
- data/vendor/ruby-ifconfig-1.2/test/unit/tc_openbsd.rb +39 -0
- data/vendor/ruby-ifconfig-1.2/test/unit/tc_sunos.rb +44 -0
- metadata +856 -0
@@ -0,0 +1,703 @@
|
|
1
|
+
/*
|
2
|
+
* Unit tests for packet_parser functions and macros.
|
3
|
+
*
|
4
|
+
* Author: Kazuya Suzuki
|
5
|
+
*
|
6
|
+
* Copyright (C) 2008-2012 NEC Corporation
|
7
|
+
*
|
8
|
+
* This program is free software; you can redistribute it and/or modify
|
9
|
+
* it under the terms of the GNU General Public License, version 2, as
|
10
|
+
* published by the Free Software Foundation.
|
11
|
+
*
|
12
|
+
* This program is distributed in the hope that it will be useful,
|
13
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
+
* GNU General Public License for more details.
|
16
|
+
*
|
17
|
+
* You should have received a copy of the GNU General Public License along
|
18
|
+
* with this program; if not, write to the Free Software Foundation, Inc.,
|
19
|
+
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
20
|
+
*/
|
21
|
+
|
22
|
+
|
23
|
+
|
24
|
+
#include <assert.h>
|
25
|
+
#include <string.h>
|
26
|
+
#include <stdio.h>
|
27
|
+
#include <pcap.h>
|
28
|
+
#include <netinet/ip.h>
|
29
|
+
#include <netinet/igmp.h>
|
30
|
+
#include "checks.h"
|
31
|
+
#include "cmockery_trema.h"
|
32
|
+
#include "packet_info.h"
|
33
|
+
#include "wrapper.h"
|
34
|
+
|
35
|
+
|
36
|
+
/******************************************************************************
|
37
|
+
* Helper functions.
|
38
|
+
******************************************************************************/
|
39
|
+
|
40
|
+
static buffer *
|
41
|
+
store_packet_to_buffer( const char *filename ) {
|
42
|
+
assert( filename != NULL );
|
43
|
+
|
44
|
+
FILE *fp = fopen( filename, "r" );
|
45
|
+
if ( fp == NULL ) {
|
46
|
+
// "Can't open a file of test data."
|
47
|
+
return NULL;
|
48
|
+
}
|
49
|
+
|
50
|
+
// Skip
|
51
|
+
if ( fseek( fp, sizeof( struct pcap_file_header ) + sizeof( uint32_t ) * 2,
|
52
|
+
SEEK_CUR ) != 0 ) {
|
53
|
+
fclose( fp );
|
54
|
+
return NULL;
|
55
|
+
}
|
56
|
+
|
57
|
+
uint32_t length[ 2 ];
|
58
|
+
size_t size = fread( &length, 1, sizeof( length ), fp );
|
59
|
+
if ( size < sizeof( length ) ) {
|
60
|
+
fclose( fp );
|
61
|
+
return NULL;
|
62
|
+
}
|
63
|
+
|
64
|
+
buffer *buffer = alloc_buffer();
|
65
|
+
if ( buffer == NULL ) {
|
66
|
+
fclose( fp );
|
67
|
+
return NULL;
|
68
|
+
}
|
69
|
+
size = fread( append_back_buffer( buffer, length[ 0 ] ), 1, length[ 0 ], fp );
|
70
|
+
if ( size < buffer->length ) {
|
71
|
+
free_buffer( buffer );
|
72
|
+
fclose( fp );
|
73
|
+
return NULL;
|
74
|
+
}
|
75
|
+
|
76
|
+
fclose( fp );
|
77
|
+
return buffer;
|
78
|
+
}
|
79
|
+
|
80
|
+
|
81
|
+
/******************************************************************************
|
82
|
+
* Test functions.
|
83
|
+
******************************************************************************/
|
84
|
+
|
85
|
+
static void
|
86
|
+
test_parse_packet_snap_succeeds() {
|
87
|
+
const char filename[] = "./unittests/lib/test_packets/ipx.cap";
|
88
|
+
buffer *buffer = store_packet_to_buffer( filename );
|
89
|
+
|
90
|
+
assert_true( parse_packet( buffer ) );
|
91
|
+
|
92
|
+
packet_info *packet_info = buffer->user_data;
|
93
|
+
|
94
|
+
assert_int_equal( packet_info->format, ETH_8023_SNAP );
|
95
|
+
|
96
|
+
u_char macda[] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
|
97
|
+
u_char macsa[] = { 0x00, 0x19, 0xdb, 0x17, 0xb9, 0x6f };
|
98
|
+
assert_memory_equal( packet_info->eth_macda, macda, ETH_ADDRLEN );
|
99
|
+
assert_memory_equal( packet_info->eth_macsa, macsa, ETH_ADDRLEN );
|
100
|
+
assert_true( packet_info->eth_type < ETH_MTU );
|
101
|
+
|
102
|
+
u_char llc[] = { 0xe0, 0xe0, 0x03 };
|
103
|
+
u_char oui[] = { 0xff, 0xff, 0x00 };
|
104
|
+
assert_memory_equal( packet_info->snap_llc, llc, SNAP_LLC_LENGTH );
|
105
|
+
assert_memory_equal( packet_info->snap_oui, oui, SNAP_OUI_LENGTH );
|
106
|
+
assert_int_equal( packet_info->snap_type, 0xb700 );
|
107
|
+
|
108
|
+
uint16_t sample = ntohs( * ( uint16_t * ) packet_info->l2_payload );
|
109
|
+
assert_int_equal( sample, 0x0400 );
|
110
|
+
|
111
|
+
assert_int_equal( packet_info->l2_payload_length, 0xb2 );
|
112
|
+
|
113
|
+
free_buffer( buffer );
|
114
|
+
}
|
115
|
+
|
116
|
+
|
117
|
+
static void
|
118
|
+
test_parse_packet_arp_request_succeeds() {
|
119
|
+
const char filename[] = "./unittests/lib/test_packets/arp_req.cap";
|
120
|
+
buffer *buffer = store_packet_to_buffer( filename );
|
121
|
+
|
122
|
+
assert_true( parse_packet( buffer ) );
|
123
|
+
packet_info *packet_info = buffer->user_data;
|
124
|
+
|
125
|
+
assert_int_equal( packet_info->format, ETH_ARP );
|
126
|
+
|
127
|
+
u_char macda[] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
|
128
|
+
u_char macsa[] = { 0x8c, 0x89, 0xa5, 0x16, 0x22, 0x09 };
|
129
|
+
assert_memory_equal( packet_info->eth_macda, macda, ETH_ADDRLEN );
|
130
|
+
assert_memory_equal( packet_info->eth_macsa, macsa, ETH_ADDRLEN );
|
131
|
+
assert_int_equal( packet_info->eth_type, ETH_ETHTYPE_ARP );
|
132
|
+
|
133
|
+
assert_int_equal( packet_info->l2_payload_length, 46 );
|
134
|
+
|
135
|
+
assert_int_equal( packet_info->arp_ar_hrd, 0x0001 );
|
136
|
+
assert_int_equal( packet_info->arp_ar_pro, 0x0800 );
|
137
|
+
assert_int_equal( packet_info->arp_ar_hln, 6 );
|
138
|
+
assert_int_equal( packet_info->arp_ar_pln, 4 );
|
139
|
+
assert_int_equal( packet_info->arp_ar_op, 1 );
|
140
|
+
assert_int_equal( packet_info->arp_spa, 0xc0a8642c );
|
141
|
+
assert_memory_equal( packet_info->arp_sha, macsa, ETH_ADDRLEN );
|
142
|
+
assert_int_equal( packet_info->arp_tpa, 0xc0a8642b );
|
143
|
+
u_char maczero[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
144
|
+
assert_memory_equal( packet_info->arp_tha, maczero, ETH_ADDRLEN );
|
145
|
+
|
146
|
+
free_buffer( buffer );
|
147
|
+
}
|
148
|
+
|
149
|
+
|
150
|
+
static void
|
151
|
+
test_parse_packet_udp_succeeds() {
|
152
|
+
const char filename[] = "./unittests/lib/test_packets/udp.cap";
|
153
|
+
buffer *buffer = store_packet_to_buffer( filename );
|
154
|
+
|
155
|
+
assert_true( parse_packet( buffer ) );
|
156
|
+
|
157
|
+
packet_info *packet_info = buffer->user_data;
|
158
|
+
|
159
|
+
assert_int_equal( packet_info->format, ETH_IPV4_UDP );
|
160
|
+
|
161
|
+
u_char macda[] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
|
162
|
+
u_char macsa[] = { 0x00, 0x21, 0x85, 0x91, 0x92, 0xdb };
|
163
|
+
assert_memory_equal( packet_info->eth_macda, macda, ETH_ADDRLEN );
|
164
|
+
assert_memory_equal( packet_info->eth_macsa, macsa, ETH_ADDRLEN );
|
165
|
+
assert_int_equal( packet_info->eth_type, ETH_ETHTYPE_IPV4 );
|
166
|
+
|
167
|
+
assert_int_equal( packet_info->l2_payload_length, 76 );
|
168
|
+
|
169
|
+
assert_int_equal( packet_info->ipv4_version, 4 );
|
170
|
+
assert_int_equal( packet_info->ipv4_ihl, 5 );
|
171
|
+
assert_int_equal( packet_info->ipv4_tos, 0 );
|
172
|
+
assert_int_equal( packet_info->ipv4_tot_len, 0x4c );
|
173
|
+
assert_int_equal( packet_info->ipv4_id, 0x48d8 );
|
174
|
+
assert_int_equal( packet_info->ipv4_frag_off, 0 );
|
175
|
+
assert_int_equal( packet_info->ipv4_ttl, 0x80 );
|
176
|
+
assert_int_equal( packet_info->ipv4_protocol, IPPROTO_UDP );
|
177
|
+
assert_int_equal( packet_info->ipv4_checksum, 0x6fab );
|
178
|
+
assert_int_equal( packet_info->ipv4_saddr, 0x0a3835af );
|
179
|
+
assert_int_equal( packet_info->ipv4_daddr, 0x0a3837ff );
|
180
|
+
|
181
|
+
assert_int_equal( packet_info->l3_payload_length, 56 );
|
182
|
+
|
183
|
+
assert_int_equal( packet_info->udp_src_port, 61616 );
|
184
|
+
assert_int_equal( packet_info->udp_dst_port, 23499 );
|
185
|
+
assert_int_equal( packet_info->udp_len, 0x38 );
|
186
|
+
assert_int_equal( packet_info->udp_checksum, 0x04a1 );
|
187
|
+
|
188
|
+
uint16_t sample = ntohs( * ( uint16_t * ) packet_info->l4_payload );
|
189
|
+
assert_int_equal( sample, 0xf937 );
|
190
|
+
|
191
|
+
assert_int_equal( packet_info->l4_payload_length, 48 );
|
192
|
+
|
193
|
+
free_buffer( buffer );
|
194
|
+
}
|
195
|
+
|
196
|
+
|
197
|
+
static void
|
198
|
+
test_parse_packet_udp_fragmented_head_succeeds() {
|
199
|
+
const char filename[] = "./unittests/lib/test_packets/udp_frag_head.cap";
|
200
|
+
buffer *buffer = store_packet_to_buffer( filename );
|
201
|
+
|
202
|
+
assert_true( parse_packet( buffer ) );
|
203
|
+
|
204
|
+
packet_info *packet_info = buffer->user_data;
|
205
|
+
|
206
|
+
assert_int_equal( packet_info->format, ETH_IPV4_UDP );
|
207
|
+
|
208
|
+
u_char macda[] = { 0x8c, 0x89, 0xa5, 0x15, 0x84, 0xcb };
|
209
|
+
u_char macsa[] = { 0x8c, 0x89, 0xa5, 0x16, 0x22, 0x09 };
|
210
|
+
assert_memory_equal( packet_info->eth_macda, macda, ETH_ADDRLEN );
|
211
|
+
assert_memory_equal( packet_info->eth_macsa, macsa, ETH_ADDRLEN );
|
212
|
+
assert_int_equal( packet_info->eth_type, ETH_ETHTYPE_IPV4 );
|
213
|
+
|
214
|
+
assert_int_equal( packet_info->l2_payload_length, 1500 );
|
215
|
+
|
216
|
+
assert_int_equal( packet_info->ipv4_version, 4 );
|
217
|
+
assert_int_equal( packet_info->ipv4_ihl, 5 );
|
218
|
+
assert_int_equal( packet_info->ipv4_tos, 0 );
|
219
|
+
assert_int_equal( packet_info->ipv4_tot_len, 0x05dc );
|
220
|
+
assert_int_equal( packet_info->ipv4_id, 0x2b33 );
|
221
|
+
assert_int_equal( packet_info->ipv4_frag_off, 0x2000 );
|
222
|
+
assert_int_equal( packet_info->ipv4_ttl, 0x40 );
|
223
|
+
assert_int_equal( packet_info->ipv4_protocol, IPPROTO_UDP );
|
224
|
+
assert_int_equal( packet_info->ipv4_checksum, 0xe035 );
|
225
|
+
assert_int_equal( packet_info->ipv4_saddr, 0xc0a8642c );
|
226
|
+
assert_int_equal( packet_info->ipv4_daddr, 0xc0a8642b );
|
227
|
+
|
228
|
+
assert_int_equal( packet_info->l3_payload_length, 1480 );
|
229
|
+
|
230
|
+
assert_int_equal( packet_info->udp_src_port, 0xa2c7 );
|
231
|
+
assert_int_equal( packet_info->udp_dst_port, 0x1f90 );
|
232
|
+
assert_int_equal( packet_info->udp_len, 0x2330 );
|
233
|
+
assert_int_equal( packet_info->udp_checksum, 0x8749 );
|
234
|
+
|
235
|
+
uint16_t sample = ntohs( * ( uint16_t * ) packet_info->l4_payload );
|
236
|
+
assert_int_equal( sample, 0x8020 );
|
237
|
+
|
238
|
+
assert_int_equal( packet_info->l4_payload_length, 1472 );
|
239
|
+
|
240
|
+
free_buffer( buffer );
|
241
|
+
}
|
242
|
+
|
243
|
+
|
244
|
+
static void
|
245
|
+
test_parse_packet_udp_fragmented_next_succeeds() {
|
246
|
+
const char filename[] = "./unittests/lib/test_packets/udp_frag_next.cap";
|
247
|
+
buffer *buffer = store_packet_to_buffer( filename );
|
248
|
+
|
249
|
+
assert_true( parse_packet( buffer ) );
|
250
|
+
|
251
|
+
packet_info *packet_info = buffer->user_data;
|
252
|
+
|
253
|
+
assert_int_equal( packet_info->format, ETH_IPV4 );
|
254
|
+
|
255
|
+
u_char macda[] = { 0x8c, 0x89, 0xa5, 0x15, 0x84, 0xcb };
|
256
|
+
u_char macsa[] = { 0x8c, 0x89, 0xa5, 0x16, 0x22, 0x09 };
|
257
|
+
assert_memory_equal( packet_info->eth_macda, macda, ETH_ADDRLEN );
|
258
|
+
assert_memory_equal( packet_info->eth_macsa, macsa, ETH_ADDRLEN );
|
259
|
+
assert_int_equal( packet_info->eth_type, ETH_ETHTYPE_IPV4 );
|
260
|
+
|
261
|
+
assert_int_equal( packet_info->l2_payload_length, 1500 );
|
262
|
+
|
263
|
+
assert_int_equal( packet_info->ipv4_version, 4 );
|
264
|
+
assert_int_equal( packet_info->ipv4_ihl, 5 );
|
265
|
+
assert_int_equal( packet_info->ipv4_tos, 0 );
|
266
|
+
assert_int_equal( packet_info->ipv4_tot_len, 0x05dc );
|
267
|
+
assert_int_equal( packet_info->ipv4_id, 0x2b33 );
|
268
|
+
assert_int_equal( packet_info->ipv4_frag_off, 0x20b9 );
|
269
|
+
assert_int_equal( packet_info->ipv4_ttl, 0x40 );
|
270
|
+
assert_int_equal( packet_info->ipv4_protocol, IPPROTO_UDP );
|
271
|
+
assert_int_equal( packet_info->ipv4_checksum, 0xdf7c );
|
272
|
+
assert_int_equal( packet_info->ipv4_saddr, 0xc0a8642c );
|
273
|
+
assert_int_equal( packet_info->ipv4_daddr, 0xc0a8642b );
|
274
|
+
|
275
|
+
uint16_t sample = ntohs( * ( uint16_t * ) packet_info->l3_payload );
|
276
|
+
assert_int_equal( sample, 0x9102 );
|
277
|
+
|
278
|
+
assert_int_equal( packet_info->l3_payload_length, 1480 );
|
279
|
+
|
280
|
+
// L4 parsing phase is skipped for fragmented packets.
|
281
|
+
assert_int_equal( packet_info->udp_src_port, 0 );
|
282
|
+
assert_int_equal( packet_info->udp_dst_port, 0 );
|
283
|
+
assert_int_equal( packet_info->udp_len, 0 );
|
284
|
+
assert_int_equal( packet_info->udp_checksum, 0 );
|
285
|
+
|
286
|
+
assert_int_equal( packet_info->l4_payload, NULL );
|
287
|
+
assert_int_equal( packet_info->l4_payload_length, 0 );
|
288
|
+
|
289
|
+
free_buffer( buffer );
|
290
|
+
}
|
291
|
+
|
292
|
+
|
293
|
+
static void
|
294
|
+
test_parse_packet_tcp_syn_succeeds() {
|
295
|
+
const char filename[] = "./unittests/lib/test_packets/tcp_syn.cap";
|
296
|
+
buffer *buffer = store_packet_to_buffer( filename );
|
297
|
+
|
298
|
+
assert_true( parse_packet( buffer ) );
|
299
|
+
|
300
|
+
packet_info *packet_info = buffer->user_data;
|
301
|
+
|
302
|
+
assert_int_equal( packet_info->format, ETH_IPV4_TCP );
|
303
|
+
|
304
|
+
u_char macda[] = { 0x00, 0x16, 0x17, 0x00, 0x43, 0xf3 };
|
305
|
+
u_char macsa[] = { 0x8c, 0x89, 0xa5, 0x15, 0x84, 0xcb };
|
306
|
+
assert_memory_equal( packet_info->eth_macda, macda, ETH_ADDRLEN );
|
307
|
+
assert_memory_equal( packet_info->eth_macsa, macsa, ETH_ADDRLEN );
|
308
|
+
assert_int_equal( packet_info->eth_type, ETH_ETHTYPE_IPV4 );
|
309
|
+
|
310
|
+
assert_int_equal( packet_info->l2_payload_length, 60 );
|
311
|
+
|
312
|
+
assert_int_equal( packet_info->ipv4_version, 4 );
|
313
|
+
assert_int_equal( packet_info->ipv4_ihl, 5 );
|
314
|
+
assert_int_equal( packet_info->ipv4_tos, 0x10 );
|
315
|
+
assert_int_equal( packet_info->ipv4_tot_len, 0x003c );
|
316
|
+
assert_int_equal( packet_info->ipv4_id, 0x5551 );
|
317
|
+
assert_int_equal( packet_info->ipv4_frag_off, 0x4000 );
|
318
|
+
assert_int_equal( packet_info->ipv4_ttl, 0x40 );
|
319
|
+
assert_int_equal( packet_info->ipv4_protocol, IPPROTO_TCP );
|
320
|
+
assert_int_equal( packet_info->ipv4_checksum, 0x9afd );
|
321
|
+
assert_int_equal( packet_info->ipv4_saddr, 0xc0a8642b );
|
322
|
+
assert_int_equal( packet_info->ipv4_daddr, 0xc0a864e1 );
|
323
|
+
|
324
|
+
assert_int_equal( packet_info->l3_payload_length, 40 );
|
325
|
+
|
326
|
+
assert_int_equal( packet_info->tcp_src_port, 0xad49 );
|
327
|
+
assert_int_equal( packet_info->tcp_dst_port, 0x0050 );
|
328
|
+
assert_int_equal( packet_info->tcp_seq_no, 0x51de9851 );
|
329
|
+
assert_int_equal( packet_info->tcp_ack_no, 0 );
|
330
|
+
assert_int_equal( packet_info->tcp_offset, 0xa );
|
331
|
+
assert_int_equal( packet_info->tcp_flags, 0x02 );
|
332
|
+
assert_int_equal( packet_info->tcp_window, 0x16d0 );
|
333
|
+
assert_int_equal( packet_info->tcp_checksum, 0x76bb );
|
334
|
+
assert_int_equal( packet_info->tcp_urgent, 0 );
|
335
|
+
|
336
|
+
assert_int_equal( packet_info->l4_payload, NULL );
|
337
|
+
assert_int_equal( packet_info->l4_payload_length, 0 );
|
338
|
+
|
339
|
+
free_buffer( buffer );
|
340
|
+
}
|
341
|
+
|
342
|
+
|
343
|
+
static void
|
344
|
+
test_parse_packet_tcp_succeeds() {
|
345
|
+
const char filename[] = "./unittests/lib/test_packets/tcp.cap";
|
346
|
+
buffer *buffer = store_packet_to_buffer( filename );
|
347
|
+
|
348
|
+
assert_true( parse_packet( buffer ) );
|
349
|
+
|
350
|
+
packet_info *packet_info = buffer->user_data;
|
351
|
+
|
352
|
+
assert_int_equal( packet_info->format, ETH_IPV4_TCP );
|
353
|
+
|
354
|
+
u_char macda[] = { 0x8c, 0x89, 0xa5, 0x15, 0x84, 0xcb };
|
355
|
+
u_char macsa[] = { 0x00, 0x16, 0x17, 0x00, 0x43, 0xf3 };
|
356
|
+
assert_memory_equal( packet_info->eth_macda, macda, ETH_ADDRLEN );
|
357
|
+
assert_memory_equal( packet_info->eth_macsa, macsa, ETH_ADDRLEN );
|
358
|
+
assert_int_equal( packet_info->eth_type, ETH_ETHTYPE_IPV4 );
|
359
|
+
|
360
|
+
assert_int_equal( packet_info->l2_payload_length, 82 );
|
361
|
+
|
362
|
+
assert_int_equal( packet_info->ipv4_version, 4 );
|
363
|
+
assert_int_equal( packet_info->ipv4_ihl, 5 );
|
364
|
+
assert_int_equal( packet_info->ipv4_tos, 0 );
|
365
|
+
assert_int_equal( packet_info->ipv4_tot_len, 0x01dd );
|
366
|
+
assert_int_equal( packet_info->ipv4_id, 0x0399 );
|
367
|
+
assert_int_equal( packet_info->ipv4_frag_off, 0x4000 );
|
368
|
+
assert_int_equal( packet_info->ipv4_ttl, 0x40 );
|
369
|
+
assert_int_equal( packet_info->ipv4_protocol, IPPROTO_TCP );
|
370
|
+
assert_int_equal( packet_info->ipv4_checksum, 0xeb24 );
|
371
|
+
assert_int_equal( packet_info->ipv4_saddr, 0xc0a864e1 );
|
372
|
+
assert_int_equal( packet_info->ipv4_daddr, 0xc0a8642b );
|
373
|
+
|
374
|
+
assert_int_equal( packet_info->l3_payload_length, 62 );
|
375
|
+
|
376
|
+
assert_int_equal( packet_info->tcp_src_port, 0x0050 );
|
377
|
+
assert_int_equal( packet_info->tcp_dst_port, 0xad49 );
|
378
|
+
assert_int_equal( packet_info->tcp_seq_no, 0x20656b68 );
|
379
|
+
assert_int_equal( packet_info->tcp_ack_no, 0x51de986e );
|
380
|
+
assert_int_equal( packet_info->tcp_offset, 0x8 );
|
381
|
+
assert_int_equal( packet_info->tcp_flags, 0x18 );
|
382
|
+
assert_int_equal( packet_info->tcp_window, 0x2086 );
|
383
|
+
assert_int_equal( packet_info->tcp_checksum, 0x4c2d );
|
384
|
+
assert_int_equal( packet_info->tcp_urgent, 0 );
|
385
|
+
|
386
|
+
uint16_t sample = ntohs( * ( uint16_t * ) packet_info->l4_payload );
|
387
|
+
assert_int_equal( sample, 0x4854 );
|
388
|
+
|
389
|
+
assert_int_equal( packet_info->l4_payload_length, 30 );
|
390
|
+
|
391
|
+
free_buffer( buffer );
|
392
|
+
}
|
393
|
+
|
394
|
+
|
395
|
+
static void
|
396
|
+
test_parse_packet_icmpv4_echo_request_succeeds() {
|
397
|
+
const char filename[] = "./unittests/lib/test_packets/icmp_echo_req.cap";
|
398
|
+
buffer *buffer = store_packet_to_buffer( filename );
|
399
|
+
|
400
|
+
assert_true( parse_packet( buffer ) );
|
401
|
+
|
402
|
+
packet_info *packet_info = buffer->user_data;
|
403
|
+
|
404
|
+
assert_int_equal( packet_info->format, ETH_IPV4_ICMPV4 );
|
405
|
+
|
406
|
+
u_char macda[] = { 0x8c, 0x89, 0xa5, 0x15, 0x84, 0xcb };
|
407
|
+
u_char macsa[] = { 0x8c, 0x89, 0xa5, 0x16, 0x22, 0x09 };
|
408
|
+
assert_memory_equal( packet_info->eth_macda, macda, ETH_ADDRLEN );
|
409
|
+
assert_memory_equal( packet_info->eth_macsa, macsa, ETH_ADDRLEN );
|
410
|
+
assert_int_equal( packet_info->eth_type, ETH_ETHTYPE_IPV4 );
|
411
|
+
|
412
|
+
assert_int_equal( packet_info->l2_payload_length, 84 );
|
413
|
+
|
414
|
+
assert_int_equal( packet_info->ipv4_version, 4 );
|
415
|
+
assert_int_equal( packet_info->ipv4_ihl, 5 );
|
416
|
+
assert_int_equal( packet_info->ipv4_tos, 0 );
|
417
|
+
assert_int_equal( packet_info->ipv4_tot_len, 0x54 );
|
418
|
+
assert_int_equal( packet_info->ipv4_id, 0 );
|
419
|
+
assert_int_equal( packet_info->ipv4_frag_off, 0x4000 );
|
420
|
+
assert_int_equal( packet_info->ipv4_ttl, 0x40 );
|
421
|
+
assert_int_equal( packet_info->ipv4_protocol, IPPROTO_ICMP );
|
422
|
+
assert_int_equal( packet_info->ipv4_checksum, 0xf100 );
|
423
|
+
assert_int_equal( packet_info->ipv4_saddr, 0xc0a8642c );
|
424
|
+
assert_int_equal( packet_info->ipv4_daddr, 0xc0a8642b );
|
425
|
+
|
426
|
+
assert_int_equal( packet_info->l3_payload_length, 64 );
|
427
|
+
|
428
|
+
assert_int_equal( packet_info->icmpv4_type, ICMP_TYPE_ECHOREQ );
|
429
|
+
assert_int_equal( packet_info->icmpv4_code, 0 );
|
430
|
+
assert_int_equal( packet_info->icmpv4_id, 1076 );
|
431
|
+
assert_int_equal( packet_info->icmpv4_seq, 1 );
|
432
|
+
|
433
|
+
uint16_t sample = ntohs( * ( uint16_t * ) packet_info->l4_payload );
|
434
|
+
assert_int_equal( sample, 0xa0a9 );
|
435
|
+
|
436
|
+
assert_int_equal( packet_info->l4_payload_length, 56 );
|
437
|
+
|
438
|
+
free_buffer( buffer );
|
439
|
+
}
|
440
|
+
|
441
|
+
|
442
|
+
static void
|
443
|
+
test_parse_packet_vtag_icmpv4_echo_request_succeeds() {
|
444
|
+
const char filename[] = "./unittests/lib/test_packets/vtag_icmp_echo_req.cap";
|
445
|
+
buffer *buffer = store_packet_to_buffer( filename );
|
446
|
+
|
447
|
+
assert_true( parse_packet( buffer ) );
|
448
|
+
|
449
|
+
packet_info *packet_info = buffer->user_data;
|
450
|
+
|
451
|
+
assert_int_equal( packet_info->format, ETH_VTAG_IPV4_ICMPV4 );
|
452
|
+
|
453
|
+
u_char macda[] = { 0x00, 0x13, 0xd3, 0x40, 0x2e, 0x22 };
|
454
|
+
u_char macsa[] = { 0x00, 0x1f, 0x3c, 0x48, 0xad, 0x3a };
|
455
|
+
assert_memory_equal( packet_info->eth_macda, macda, ETH_ADDRLEN );
|
456
|
+
assert_memory_equal( packet_info->eth_macsa, macsa, ETH_ADDRLEN );
|
457
|
+
|
458
|
+
assert_int_equal( packet_info->vlan_tci, 0x0f9f );
|
459
|
+
assert_int_equal( packet_info->vlan_tpid, ETH_ETHTYPE_TPID );
|
460
|
+
assert_int_equal( packet_info->vlan_prio, 0 );
|
461
|
+
assert_int_equal( packet_info->vlan_cfi, 0 );
|
462
|
+
assert_int_equal( packet_info->vlan_vid, 0x0f9f );
|
463
|
+
|
464
|
+
assert_int_equal( packet_info->eth_type, ETH_ETHTYPE_IPV4 );
|
465
|
+
|
466
|
+
assert_int_equal( packet_info->l2_payload_length, 60 );
|
467
|
+
|
468
|
+
assert_int_equal( packet_info->ipv4_version, 4 );
|
469
|
+
assert_int_equal( packet_info->ipv4_ihl, 5 );
|
470
|
+
assert_int_equal( packet_info->ipv4_tos, 0 );
|
471
|
+
assert_int_equal( packet_info->ipv4_tot_len, 0x3c );
|
472
|
+
assert_int_equal( packet_info->ipv4_id, 0x8c1b );
|
473
|
+
assert_int_equal( packet_info->ipv4_frag_off, 0 );
|
474
|
+
assert_int_equal( packet_info->ipv4_ttl, 0x80 );
|
475
|
+
assert_int_equal( packet_info->ipv4_protocol, IPPROTO_ICMP );
|
476
|
+
assert_int_equal( packet_info->ipv4_checksum, 0xed09 );
|
477
|
+
assert_int_equal( packet_info->ipv4_saddr, 0xc0a8204a );
|
478
|
+
assert_int_equal( packet_info->ipv4_daddr, 0xc0a82001 );
|
479
|
+
|
480
|
+
assert_int_equal( packet_info->l3_payload_length, 40 );
|
481
|
+
|
482
|
+
assert_int_equal( packet_info->icmpv4_type, ICMP_TYPE_ECHOREQ );
|
483
|
+
assert_int_equal( packet_info->icmpv4_code, 0 );
|
484
|
+
assert_int_equal( packet_info->icmpv4_id, 1024 );
|
485
|
+
assert_int_equal( packet_info->icmpv4_seq, 24576 );
|
486
|
+
|
487
|
+
uint16_t sample = ntohs( * ( uint16_t * ) packet_info->l4_payload );
|
488
|
+
assert_int_equal( sample, 0x6162 );
|
489
|
+
assert_int_equal( packet_info->l4_payload_length, 32 );
|
490
|
+
|
491
|
+
free_buffer( buffer );
|
492
|
+
}
|
493
|
+
|
494
|
+
|
495
|
+
static void
|
496
|
+
test_parse_packet_vtag_icmpv4_echo_reply_succeeds() {
|
497
|
+
const char filename[] = "./unittests/lib/test_packets/vtag_icmp_echo_rep.cap";
|
498
|
+
buffer *buffer = store_packet_to_buffer( filename );
|
499
|
+
|
500
|
+
assert_true( parse_packet( buffer ) );
|
501
|
+
|
502
|
+
packet_info *packet_info = buffer->user_data;
|
503
|
+
|
504
|
+
assert_int_equal( packet_info->format, ETH_VTAG_IPV4_ICMPV4 );
|
505
|
+
|
506
|
+
u_char macda[] = { 0x00, 0x1f, 0x3c, 0x48, 0xad, 0x3a };
|
507
|
+
u_char macsa[] = { 0x00, 0x13, 0xd3, 0x40, 0x2e, 0x22 };
|
508
|
+
assert_memory_equal( packet_info->eth_macda, macda, ETH_ADDRLEN );
|
509
|
+
assert_memory_equal( packet_info->eth_macsa, macsa, ETH_ADDRLEN );
|
510
|
+
|
511
|
+
assert_int_equal( packet_info->vlan_tci, 0x6f9f );
|
512
|
+
assert_int_equal( packet_info->vlan_tpid, ETH_ETHTYPE_TPID );
|
513
|
+
assert_int_equal( packet_info->vlan_prio, 3 );
|
514
|
+
assert_int_equal( packet_info->vlan_cfi, 0 );
|
515
|
+
assert_int_equal( packet_info->vlan_vid, 0x0f9f );
|
516
|
+
|
517
|
+
assert_int_equal( packet_info->eth_type, ETH_ETHTYPE_IPV4 );
|
518
|
+
|
519
|
+
assert_int_equal( packet_info->l2_payload_length, 60 );
|
520
|
+
|
521
|
+
assert_int_equal( packet_info->ipv4_version, 4 );
|
522
|
+
assert_int_equal( packet_info->ipv4_ihl, 5 );
|
523
|
+
assert_int_equal( packet_info->ipv4_tos, 0 );
|
524
|
+
assert_int_equal( packet_info->ipv4_tot_len, 0x3c );
|
525
|
+
assert_int_equal( packet_info->ipv4_id, 0x1652 );
|
526
|
+
assert_int_equal( packet_info->ipv4_frag_off, 0 );
|
527
|
+
assert_int_equal( packet_info->ipv4_ttl, 0x40 );
|
528
|
+
assert_int_equal( packet_info->ipv4_protocol, IPPROTO_ICMP );
|
529
|
+
assert_int_equal( packet_info->ipv4_checksum, 0xa2d3 );
|
530
|
+
assert_int_equal( packet_info->ipv4_saddr, 0xc0a82001 );
|
531
|
+
assert_int_equal( packet_info->ipv4_daddr, 0xc0a8204a );
|
532
|
+
|
533
|
+
assert_int_equal( packet_info->l3_payload_length, 40 );
|
534
|
+
|
535
|
+
assert_int_equal( packet_info->icmpv4_type, ICMP_TYPE_ECHOREP );
|
536
|
+
assert_int_equal( packet_info->icmpv4_code, 0 );
|
537
|
+
assert_int_equal( packet_info->icmpv4_id, 1024 );
|
538
|
+
assert_int_equal( packet_info->icmpv4_seq, 24576 );
|
539
|
+
|
540
|
+
uint16_t sample = ntohs( * ( uint16_t * ) packet_info->l4_payload );
|
541
|
+
assert_int_equal( sample, 0x6162 );
|
542
|
+
assert_int_equal( packet_info->l4_payload_length, 32 );
|
543
|
+
|
544
|
+
free_buffer( buffer );
|
545
|
+
}
|
546
|
+
|
547
|
+
|
548
|
+
static void
|
549
|
+
test_parse_packet_igmp_query_v2_succeeds() {
|
550
|
+
const char filename[] = "./unittests/lib/test_packets/igmp_query_v2.cap";
|
551
|
+
buffer *buffer = store_packet_to_buffer( filename );
|
552
|
+
|
553
|
+
assert_true( parse_packet( buffer ) );
|
554
|
+
|
555
|
+
packet_info *packet_info = buffer->user_data;
|
556
|
+
|
557
|
+
assert_int_equal( packet_info->format, ETH_IPV4_IGMP );
|
558
|
+
|
559
|
+
u_char macda[] = { 0x01, 0x00, 0x5e, 0x00, 0x00, 0x01 };
|
560
|
+
u_char macsa[] = { 0x8c, 0x89, 0xa5, 0x15, 0x84, 0xcb };
|
561
|
+
assert_memory_equal( packet_info->eth_macda, macda, ETH_ADDRLEN );
|
562
|
+
assert_memory_equal( packet_info->eth_macsa, macsa, ETH_ADDRLEN );
|
563
|
+
|
564
|
+
assert_int_equal( packet_info->l2_payload_length, 32 );
|
565
|
+
|
566
|
+
assert_int_equal( packet_info->igmp_type, IGMP_MEMBERSHIP_QUERY );
|
567
|
+
assert_int_equal( packet_info->igmp_code, 100 );
|
568
|
+
assert_int_equal( packet_info->igmp_cksum, 0xee9b );
|
569
|
+
assert_int_equal( packet_info->igmp_group, 0 );
|
570
|
+
|
571
|
+
assert_true( packet_type_igmp_membership_query( buffer ) );
|
572
|
+
|
573
|
+
free_buffer( buffer );
|
574
|
+
}
|
575
|
+
|
576
|
+
|
577
|
+
static void
|
578
|
+
test_parse_packet_lldp_succeeds() {
|
579
|
+
const char filename[] = "./unittests/lib/test_packets/lldp.cap";
|
580
|
+
buffer *buffer = store_packet_to_buffer( filename );
|
581
|
+
|
582
|
+
assert_true( parse_packet( buffer ) );
|
583
|
+
|
584
|
+
packet_info *packet_info = buffer->user_data;
|
585
|
+
|
586
|
+
assert_int_equal( packet_info->format, ETH_LLDP );
|
587
|
+
|
588
|
+
u_char macda[] = { 0x01, 0x80, 0xc2, 0x00, 0x00, 0x0e };
|
589
|
+
u_char macsa[] = { 0xba, 0x22, 0xd3, 0x75, 0x8f, 0x7c };
|
590
|
+
assert_memory_equal( packet_info->eth_macda, macda, ETH_ADDRLEN );
|
591
|
+
assert_memory_equal( packet_info->eth_macsa, macsa, ETH_ADDRLEN );
|
592
|
+
|
593
|
+
uint16_t sample = ntohs( * ( uint16_t * ) packet_info->l3_payload );
|
594
|
+
assert_int_equal( sample, 0x0205 );
|
595
|
+
assert_int_equal( packet_info->l3_payload_length, 46 );
|
596
|
+
|
597
|
+
free_buffer( buffer );
|
598
|
+
}
|
599
|
+
|
600
|
+
|
601
|
+
static void
|
602
|
+
test_parse_packet_lldp_over_ip_succeeds() {
|
603
|
+
const char filename[] = "./unittests/lib/test_packets/lldp_over_ip.cap";
|
604
|
+
buffer *copy;
|
605
|
+
buffer *buffer = store_packet_to_buffer( filename );
|
606
|
+
|
607
|
+
assert_true( parse_packet( buffer ) );
|
608
|
+
|
609
|
+
packet_info *packet_info = buffer->user_data;
|
610
|
+
|
611
|
+
assert_int_equal( packet_info->format, ETH_IPV4_ETHERIP );
|
612
|
+
|
613
|
+
u_char macda[] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
|
614
|
+
u_char macsa[] = { 0xfe, 0xab, 0x7e, 0x15, 0x3f, 0xc6 };
|
615
|
+
assert_memory_equal( packet_info->eth_macda, macda, ETH_ADDRLEN );
|
616
|
+
assert_memory_equal( packet_info->eth_macsa, macsa, ETH_ADDRLEN );
|
617
|
+
|
618
|
+
assert_int_equal( packet_info->ipv4_version, 4 );
|
619
|
+
assert_int_equal( packet_info->ipv4_ihl, 5 );
|
620
|
+
assert_int_equal( packet_info->ipv4_tos, 0 );
|
621
|
+
assert_int_equal( packet_info->ipv4_tot_len, 51 );
|
622
|
+
assert_int_equal( packet_info->ipv4_id, 0 );
|
623
|
+
assert_int_equal( packet_info->ipv4_frag_off, 0 );
|
624
|
+
assert_int_equal( packet_info->ipv4_ttl, 1 );
|
625
|
+
assert_int_equal( packet_info->ipv4_protocol, 97 );
|
626
|
+
assert_int_equal( packet_info->ipv4_checksum, 0 );
|
627
|
+
assert_int_equal( packet_info->ipv4_saddr, 0x0a2a7aca );
|
628
|
+
assert_int_equal( packet_info->ipv4_daddr, 0x0a2a7ad4 );
|
629
|
+
|
630
|
+
uint16_t sample = ntohs( * ( uint16_t * ) packet_info->l4_payload );
|
631
|
+
assert_int_equal( sample, 0x0180 );
|
632
|
+
assert_int_equal( packet_info->l4_payload_length, 31 );
|
633
|
+
|
634
|
+
assert_int_equal( packet_info->etherip_version, ETHERIP_VERSION );
|
635
|
+
assert_int_equal( packet_info->etherip_offset, 36 );
|
636
|
+
|
637
|
+
copy = duplicate_buffer( buffer );
|
638
|
+
assert_true ( copy != NULL );
|
639
|
+
assert_true( copy->length == buffer->length );
|
640
|
+
copy->user_data = NULL;
|
641
|
+
remove_front_buffer( copy, packet_info->etherip_offset );
|
642
|
+
|
643
|
+
assert_true( parse_packet( copy ) );
|
644
|
+
|
645
|
+
packet_info = copy->user_data;
|
646
|
+
|
647
|
+
assert_int_equal( packet_info->format, ETH_LLDP );
|
648
|
+
|
649
|
+
u_char lldp_macda[] = { 0x01, 0x80, 0xc2, 0x00, 0x00, 0x0e };
|
650
|
+
u_char lldp_macsa[] = { 0xfe, 0xab, 0x7e, 0x15, 0x3f, 0xc6 };
|
651
|
+
|
652
|
+
assert_memory_equal( packet_info->eth_macda, lldp_macda, ETH_ADDRLEN );
|
653
|
+
assert_memory_equal( packet_info->eth_macsa, lldp_macsa, ETH_ADDRLEN );
|
654
|
+
|
655
|
+
sample = ntohs( * ( uint16_t * ) packet_info->l3_payload );
|
656
|
+
assert_int_equal( sample, 0x0205 );
|
657
|
+
assert_int_equal( packet_info->l3_payload_length, 17 );
|
658
|
+
|
659
|
+
free_buffer( copy );
|
660
|
+
|
661
|
+
free_buffer( buffer );
|
662
|
+
}
|
663
|
+
|
664
|
+
/******************************************************************************
|
665
|
+
* Run tests.
|
666
|
+
******************************************************************************/
|
667
|
+
|
668
|
+
int
|
669
|
+
main() {
|
670
|
+
UnitTest tests[] = {
|
671
|
+
unit_test( test_parse_packet_snap_succeeds ),
|
672
|
+
|
673
|
+
unit_test( test_parse_packet_arp_request_succeeds ),
|
674
|
+
|
675
|
+
unit_test( test_parse_packet_udp_succeeds ),
|
676
|
+
unit_test( test_parse_packet_udp_fragmented_head_succeeds ),
|
677
|
+
unit_test( test_parse_packet_udp_fragmented_next_succeeds ),
|
678
|
+
|
679
|
+
unit_test( test_parse_packet_tcp_syn_succeeds ),
|
680
|
+
unit_test( test_parse_packet_tcp_succeeds ),
|
681
|
+
|
682
|
+
unit_test( test_parse_packet_icmpv4_echo_request_succeeds ),
|
683
|
+
|
684
|
+
unit_test( test_parse_packet_vtag_icmpv4_echo_request_succeeds ),
|
685
|
+
unit_test( test_parse_packet_vtag_icmpv4_echo_reply_succeeds ),
|
686
|
+
|
687
|
+
unit_test( test_parse_packet_igmp_query_v2_succeeds ),
|
688
|
+
|
689
|
+
unit_test( test_parse_packet_lldp_succeeds ),
|
690
|
+
|
691
|
+
unit_test( test_parse_packet_lldp_over_ip_succeeds ),
|
692
|
+
};
|
693
|
+
stub_logger();
|
694
|
+
return run_tests( tests );
|
695
|
+
}
|
696
|
+
|
697
|
+
|
698
|
+
/*
|
699
|
+
* Local variables:
|
700
|
+
* c-basic-offset: 2
|
701
|
+
* indent-tabs-mode: nil
|
702
|
+
* End:
|
703
|
+
*/
|