Reference: Python API
Auto-generated Python API documentation powered by mkdocstrings.
Core Pipeline & Orchestration
nse.core.pipeline
Test pipeline: orchestrates a single NSE test run.
run_test_pipeline(request, controller=None, queue=None, run=None)
async
Full test lifecycle coroutine.
Executes a test request in isolated Linux network namespaces, injecting packets and collecting kernel nftables trace events.
Source code in nse/core/pipeline.py
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 | |
Netns Controller
nse.core.netns_controller
NetnsController: manages ephemeral Linux network namespaces.
All subprocess calls use iproute2 (ip) and must be run as root.
NamespaceSandbox
Represents an active isolated network namespace sandbox. Provides utility methods to execute commands and inject packets inside the sandbox context.
Source code in nse/core/netns_controller.py
exec(command)
async
Execute a shell command inside the network namespace context asynchronously.
Source code in nse/core/netns_controller.py
inject_packet(protocol, dst_port, dst_ip, src_ip=None)
async
Inject a layer 3/4 packet on the host side of the veth link targeting this namespace.
Source code in nse/core/netns_controller.py
NetnsController
Central orchestrator for network namespace lifecycle and test management.
Source code in nse/core/netns_controller.py
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 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 | |
cleanup_all()
Destroy all known namespaces. Called on SIGINT/SIGTERM. Safe to call multiple times.
Source code in nse/core/netns_controller.py
create_gateway_topology(router_ns, server_ns, veth_host, veth_router_host, veth_router_server, veth_server, host_v4='10.0.1.1/24', router_host_v4='10.0.1.2/24', router_server_v4='10.0.2.1/24', server_v4='10.0.2.2/24', host_v6='fd00:1::1/64', router_host_v6='fd00:1::2/64', router_server_v6='fd00:2::1/64', server_v6='fd00:2::2/64')
Create router and server namespaces, build double veth links, enable IPv4/IPv6 forwarding inside the router, and add transit routes.
Source code in nse/core/netns_controller.py
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 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 | |
create_namespace(name, host_ip='10.0.1.1/24', peer_ip='10.0.1.2/24')
async
Context manager to safely construct and teardown an isolated namespace.
Source code in nse/core/netns_controller.py
create_netns(name)
Create a new network namespace. Raises on failure.
Source code in nse/core/netns_controller.py
create_veth_pair(netns_name, veth_host, veth_peer, host_ip='10.0.0.1/24', peer_ip='10.0.0.2/24')
Create a veth pair, move one end into netns_name, and assign IPs.
Source code in nse/core/netns_controller.py
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 | |
destroy_netns(name)
Delete a network namespace with retry backoff. Idempotent.
Source code in nse/core/netns_controller.py
startup_sweep()
Clean up orphan namespaces and veth pairs left behind by previous crashes.
Source code in nse/core/netns_controller.py
Rule Engine
nse.core.rule_engine
RuleEngine: inject and validate nftables rulesets inside a netns.
RuleEngine
Validates and loads nftables rules into a network namespace.
Source code in nse/core/rule_engine.py
flush(netns_name)
Remove all nftables rules from a namespace (safe cleanup).
Source code in nse/core/rule_engine.py
load(rules, netns_name)
Write rules to a temp file and load them inside netns_name. Automatically prepends tracing enablement (meta trace set 1).
Source code in nse/core/rule_engine.py
validate(rules)
Dry-run validation using nft --check.
Source code in nse/core/rule_engine.py
RuleValidationError
Bases: Exception
Raised when nft -f rejects the supplied ruleset.
Source code in nse/core/rule_engine.py
Trace Harvester
nse.core.trace_harvester
TraceHarvester: parse nft monitor trace output into TraceEvent objects.
nft monitor trace emits lines like:
trace id 1be8aad4 ip filter input packet: iif "veth0" ...
trace id 1be8aad4 ip filter input rule 0x4 (handle 3) tcp dport 80 accept (verdict accept)
trace id 1be8aad4 ip filter input verdict accept
trace id 1be8aad4 ip filter input policy accept
Each line is parsed into a TraceEvent and pushed onto an asyncio.Queue that the WebSocket handler reads from.
The sentinel value None is pushed when monitoring ends (process exits or
times out) to signal the WebSocket to send a "done" event and close.
TraceHarvester
Async subprocess wrapper for nft monitor trace.
Usage::
harvester = TraceHarvester()
await harvester.start(netns_name="nse_abc", queue=event_queue)
# later…
harvester.stop()
Source code in nse/core/trace_harvester.py
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 | |
start(netns_name, queue, timeout=10.0, use_nsenter=False, on_event=None)
async
Launch nft monitor trace inside netns_name and begin streaming.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
netns_name
|
str
|
The target network namespace. |
required |
queue
|
Queue[TraceEvent | None]
|
Output queue (TraceEvent or None sentinel on completion). |
required |
timeout
|
float
|
Max seconds to wait for trace events before giving up. |
10.0
|
use_nsenter
|
bool
|
Use nsenter fallback in container environments. |
False
|
on_event
|
Callable[[TraceEvent], None] | None
|
Optional callback invoked synchronously on every parsed TraceEvent. |
None
|
Source code in nse/core/trace_harvester.py
stop()
Terminate the monitor process.
Source code in nse/core/trace_harvester.py
wait_ready(timeout=2.0)
async
Wait until the trace harvester process is up and reading.
Source code in nse/core/trace_harvester.py
Scapy Packet Injector
nse.core.scapy_injector
ScapyInjector: forge and inject raw packets into a network namespace.
ScapyInjector
Build and inject a packet described by a PacketSpec into a netns.
Source code in nse/core/scapy_injector.py
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 | |
inject(spec, netns_name, veth_host, veth_peer)
Construct and send a packet matching spec inside or into netns_name.
Source code in nse/core/scapy_injector.py
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 | |
Data Models
nse.models.test_request
Pydantic models for incoming test requests.
PacketSpec
Bases: BaseModel
Describes the packet to forge and inject.
Source code in nse/models/test_request.py
TestRequest
Bases: BaseModel
Top-level body for POST /api/test.
Source code in nse/models/test_request.py
nse.models.trace_event
Pydantic models for trace events streamed over WebSocket.
TestStatusResponse
TraceEvent
Bases: BaseModel
A single event emitted by nft monitor trace (or the pipeline itself).