Commit de4aee7d authored by Fan Du's avatar Fan Du Committed by Steffen Klassert

{pktgen, xfrm} Using "pgset spi xxx" to spedifiy SA for a given flow

User could set specific SPI value to arm pktgen flow with IPsec
transformation, instead of looking up SA by sadr/daddr. The reaseon
to do so is because current state lookup scheme is both slow and, most
important of all, in fact pktgen doesn't need to match any SA state
addresses information, all it needs is the SA transfromation shell to
do the encapuslation.

And this option also provide user an alternative to using pktgen
test existing SA without creating new ones.
Signed-off-by: default avatarFan Du <fan.du@windriver.com>
Signed-off-by: default avatarSteffen Klassert <steffen.klassert@secunet.com>
parent 4ae770bf
...@@ -389,6 +389,7 @@ struct pktgen_dev { ...@@ -389,6 +389,7 @@ struct pktgen_dev {
#ifdef CONFIG_XFRM #ifdef CONFIG_XFRM
__u8 ipsmode; /* IPSEC mode (config) */ __u8 ipsmode; /* IPSEC mode (config) */
__u8 ipsproto; /* IPSEC type (config) */ __u8 ipsproto; /* IPSEC type (config) */
__u32 spi;
#endif #endif
char result[512]; char result[512];
}; };
...@@ -1477,6 +1478,17 @@ static ssize_t pktgen_if_write(struct file *file, ...@@ -1477,6 +1478,17 @@ static ssize_t pktgen_if_write(struct file *file,
return count; return count;
} }
if (!strcmp(name, "spi")) {
len = num_arg(&user_buffer[i], 10, &value);
if (len < 0)
return len;
i += len;
pkt_dev->spi = value;
sprintf(pg_result, "OK: spi=%u", pkt_dev->spi);
return count;
}
if (!strcmp(name, "flowlen")) { if (!strcmp(name, "flowlen")) {
len = num_arg(&user_buffer[i], 10, &value); len = num_arg(&user_buffer[i], 10, &value);
if (len < 0) if (len < 0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment