← Documents Documentation/networking/xfrm_sync.rst GitHub 원문 ↗

Linux 6.18.37 · Networking

XFRM

HA failover를 위한 XFRM SA lifetime·replay synchronization과 AE netlink message, event threshold를 설명합니다.

Source pathDocumentation/networking/xfrm_sync.rst
Source versionLinux v6.18.37
TranslationDUJINLABS 전문 번역 + 해설

요약·해설과 원문, 전문 번역을 서로 분리했습니다. API 이름, symbol, source path는 원문 표기를 사용합니다.

1. 요약·해설

원문의 핵심 논리와 kernel programming 관점의 보충 설명입니다. 아래의 전문 번역과는 별도로 작성했습니다.

요약·해설

xfrm_sync.rst:1-189

XFRM AE synchronization은 active SA의 lifetime byte와 replay sequence를 threshold 기반 netlink event로 backup에 전달해 failover 시 expiry와 anti-replay state를 보존합니다.

GETAE는 state를 조회하고 NEWAE는 응답, configuration과 event에 공통으로 쓰입니다. Replay packet threshold와 timer가 event 양을 제한하며 listener가 없으면 기본적으로 event를 생성하지 않습니다.

2. 영어 원문 전체

번역 기준이 된 Linux v6.18.37 원문입니다. 줄 번호는 이 버전의 파일 좌표입니다.

원문 전체 펼치기
1 .. SPDX-License-Identifier: GPL-2.0
2
3 ====
4 XFRM
5 ====
6
7 The sync patches work is based on initial patches from
8 Krisztian <[email protected]> and others and additional patches
9 from Jamal <[email protected]>.
10
11 The end goal for syncing is to be able to insert attributes + generate
12 events so that the SA can be safely moved from one machine to another
13 for HA purposes.
14 The idea is to synchronize the SA so that the takeover machine can do
15 the processing of the SA as accurate as possible if it has access to it.
16
17 We already have the ability to generate SA add/del/upd events.
18 These patches add ability to sync and have accurate lifetime byte (to
19 ensure proper decay of SAs) and replay counters to avoid replay attacks
20 with as minimal loss at failover time.
21 This way a backup stays as closely up-to-date as an active member.
22
23 Because the above items change for every packet the SA receives,
24 it is possible for a lot of the events to be generated.
25 For this reason, we also add a nagle-like algorithm to restrict
26 the events. i.e we are going to set thresholds to say "let me
27 know if the replay sequence threshold is reached or 10 secs have passed"
28 These thresholds are set system-wide via sysctls or can be updated
29 per SA.
30
31 The identified items that need to be synchronized are:
32 - the lifetime byte counter
33 note that: lifetime time limit is not important if you assume the failover
34 machine is known ahead of time since the decay of the time countdown
35 is not driven by packet arrival.
36 - the replay sequence for both inbound and outbound
37
38 1) Message Structure
39 ----------------------
40
41 nlmsghdr:aevent_id:optional-TLVs.
42
43 The netlink message types are:
44
45 XFRM_MSG_NEWAE and XFRM_MSG_GETAE.
46
47 A XFRM_MSG_GETAE does not have TLVs.
48
49 A XFRM_MSG_NEWAE will have at least two TLVs (as is
50 discussed further below).
51
52 aevent_id structure looks like::
53
54 struct xfrm_aevent_id {
55 struct xfrm_usersa_id sa_id;
56 xfrm_address_t saddr;
57 __u32 flags;
58 __u32 reqid;
59 };
60
61 The unique SA is identified by the combination of xfrm_usersa_id,
62 reqid and saddr.
63
64 flags are used to indicate different things. The possible
65 flags are::
66
67 XFRM_AE_RTHR=1, /* replay threshold*/
68 XFRM_AE_RVAL=2, /* replay value */
69 XFRM_AE_LVAL=4, /* lifetime value */
70 XFRM_AE_ETHR=8, /* expiry timer threshold */
71 XFRM_AE_CR=16, /* Event cause is replay update */
72 XFRM_AE_CE=32, /* Event cause is timer expiry */
73 XFRM_AE_CU=64, /* Event cause is policy update */
74
75 How these flags are used is dependent on the direction of the
76 message (kernel<->user) as well the cause (config, query or event).
77 This is described below in the different messages.
78
79 The pid will be set appropriately in netlink to recognize direction
80 (0 to the kernel and pid = processid that created the event
81 when going from kernel to user space)
82
83 A program needs to subscribe to multicast group XFRMNLGRP_AEVENTS
84 to get notified of these events.
85
86 2) TLVS reflect the different parameters:
87 -----------------------------------------
88
89 a) byte value (XFRMA_LTIME_VAL)
90
91 This TLV carries the running/current counter for byte lifetime since
92 last event.
93
94 b)replay value (XFRMA_REPLAY_VAL)
95
96 This TLV carries the running/current counter for replay sequence since
97 last event.
98
99 c)replay threshold (XFRMA_REPLAY_THRESH)
100
101 This TLV carries the threshold being used by the kernel to trigger events
102 when the replay sequence is exceeded.
103
104 d) expiry timer (XFRMA_ETIMER_THRESH)
105
106 This is a timer value in milliseconds which is used as the nagle
107 value to rate limit the events.
108
109 3) Default configurations for the parameters:
110 ---------------------------------------------
111
112 By default these events should be turned off unless there is
113 at least one listener registered to listen to the multicast
114 group XFRMNLGRP_AEVENTS.
115
116 Programs installing SAs will need to specify the two thresholds, however,
117 in order to not change existing applications such as racoon
118 we also provide default threshold values for these different parameters
119 in case they are not specified.
120
121 the two sysctls/proc entries are:
122
123 a) /proc/sys/net/core/sysctl_xfrm_aevent_etime
124 used to provide default values for the XFRMA_ETIMER_THRESH in incremental
125 units of time of 100ms. The default is 10 (1 second)
126
127 b) /proc/sys/net/core/sysctl_xfrm_aevent_rseqth
128 used to provide default values for XFRMA_REPLAY_THRESH parameter
129 in incremental packet count. The default is two packets.
130
131 4) Message types
132 ----------------
133
134 a) XFRM_MSG_GETAE issued by user-->kernel.
135 XFRM_MSG_GETAE does not carry any TLVs.
136
137 The response is a XFRM_MSG_NEWAE which is formatted based on what
138 XFRM_MSG_GETAE queried for.
139
140 The response will always have XFRMA_LTIME_VAL and XFRMA_REPLAY_VAL TLVs.
141 * if XFRM_AE_RTHR flag is set, then XFRMA_REPLAY_THRESH is also retrieved
142 * if XFRM_AE_ETHR flag is set, then XFRMA_ETIMER_THRESH is also retrieved
143
144 b) XFRM_MSG_NEWAE is issued by either user space to configure
145 or kernel to announce events or respond to a XFRM_MSG_GETAE.
146
147 i) user --> kernel to configure a specific SA.
148
149 any of the values or threshold parameters can be updated by passing the
150 appropriate TLV.
151
152 A response is issued back to the sender in user space to indicate success
153 or failure.
154
155 In the case of success, additionally an event with
156 XFRM_MSG_NEWAE is also issued to any listeners as described in iii).
157
158 ii) kernel->user direction as a response to XFRM_MSG_GETAE
159
160 The response will always have XFRMA_LTIME_VAL and XFRMA_REPLAY_VAL TLVs.
161
162 The threshold TLVs will be included if explicitly requested in
163 the XFRM_MSG_GETAE message.
164
165 iii) kernel->user to report as event if someone sets any values or
166 thresholds for an SA using XFRM_MSG_NEWAE (as described in #i above).
167 In such a case XFRM_AE_CU flag is set to inform the user that
168 the change happened as a result of an update.
169 The message will always have XFRMA_LTIME_VAL and XFRMA_REPLAY_VAL TLVs.
170
171 iv) kernel->user to report event when replay threshold or a timeout
172 is exceeded.
173
174 In such a case either XFRM_AE_CR (replay exceeded) or XFRM_AE_CE (timeout
175 happened) is set to inform the user what happened.
176 Note the two flags are mutually exclusive.
177 The message will always have XFRMA_LTIME_VAL and XFRMA_REPLAY_VAL TLVs.
178
179 Exceptions to threshold settings
180 --------------------------------
181
182 If you have an SA that is getting hit by traffic in bursts such that
183 there is a period where the timer threshold expires with no packets
184 seen, then an odd behavior is seen as follows:
185 The first packet arrival after a timer expiry will trigger a timeout
186 event; i.e we don't wait for a timeout period or a packet threshold
187 to be reached. This is done for simplicity and efficiency reasons.
188
189 -JHS
190

3. 한국어 전문 번역

영어 원문의 문단 순서와 의미를 유지한 전체 번역입니다. 코드, 함수명, symbol과 URL은 원문 표기를 유지합니다.

HA synchronization 목표

1-38

XFRM sync patch는 Krisztian과 여러 기여자의 초기 patch, Jamal의 추가 patch를 바탕으로 합니다.

최종 목표는 attribute를 삽입하고 event를 생성해 HA 환경에서 SA를 한 machine에서 다른 machine으로 안전하게 옮기는 것입니다. Takeover machine이 SA에 접근할 수 있을 때 active machine과 최대한 정확히 같은 처리를 하도록 state를 동기화합니다.

기존 SA add/delete/update event에 더해 lifetime byte counter를 정확히 맞춰 SA decay를 보존하고 inbound·outbound replay counter를 동기화해 replay attack과 failover packet loss를 줄입니다. Backup은 active member에 최대한 가까운 최신 상태를 유지합니다.

이 값은 SA가 packet을 받을 때마다 바뀌므로 event 폭증을 막는 Nagle 유사 rate-limit을 사용합니다. 예를 들어 replay sequence threshold에 도달하거나 10초가 지날 때 알려 달라는 조건을 둡니다. Threshold는 system-wide sysctl 또는 SA별 update로 설정합니다.

동기화 대상은 lifetime byte counter와 양방향 replay sequence입니다. Failover machine을 미리 안다면 packet arrival이 time countdown을 구동하지 않으므로 lifetime time limit은 중요하지 않습니다.

XFRM HA synchronization
Active SA packet processingLifetime bytes + replay sequenceReplay/time thresholdXFRM AE eventBackup SA updateFailover-ready state

Active의 변동 state를 threshold event로 backup에 반영합니다.

.. SPDX-License-Identifier: GPL-2.0

====
XFRM
====

The sync patches work is based on initial patches from
Krisztian <[email protected]> and others and additional patches
from Jamal <[email protected]>.

The end goal for syncing is to be able to insert attributes + generate
events so that the SA can be safely moved from one machine to another
for HA purposes.
The idea is to synchronize the SA so that the takeover machine can do
the processing of the SA as accurate as possible if it has access to it.

We already have the ability to generate SA add/del/upd events.
These patches add ability to sync and have accurate lifetime byte (to
ensure proper decay of SAs) and replay counters to avoid replay attacks
with as minimal loss at failover time.
This way a backup stays as closely up-to-date as an active member.

Because the above items change for every packet the SA receives,
it is possible for a lot of the events to be generated.
For this reason, we also add a nagle-like algorithm to restrict
the events. i.e we are going to set thresholds to say "let me
know if the replay sequence threshold is reached or 10 secs have passed"
These thresholds are set system-wide via sysctls or can be updated
per SA.

The identified items that need to be synchronized are:
- the lifetime byte counter
note that: lifetime time limit is not important if you assume the failover
machine is known ahead of time since the decay of the time countdown
is not driven by packet arrival.
- the replay sequence for both inbound and outbound

1) Message Structure

AE netlink message 구조와 flag

39-86

Message format은 `nlmsghdr:aevent_id:optional-TLVs`입니다. Netlink message type은 `XFRM_MSG_NEWAE`와 `XFRM_MSG_GETAE`이며 GETAE에는 TLV가 없고 NEWAE에는 최소 두 TLV가 있습니다.

`struct xfrm_aevent_id`는 `xfrm_usersa_id sa_id`, source address `saddr`, `flags`, `reqid`를 담습니다. 고유 SA는 `xfrm_usersa_id`, `reqid`, `saddr` 조합으로 식별합니다.

XFRM AE flags
FlagValue의미
XFRM_AE_RTHR1Replay threshold
XFRM_AE_RVAL2Replay value
XFRM_AE_LVAL4Lifetime value
XFRM_AE_ETHR8Expiry timer threshold
XFRM_AE_CR16Replay update가 event 원인
XFRM_AE_CE32Timer expiry가 event 원인
XFRM_AE_CU64Policy update가 event 원인

Threshold/value 포함 여부와 event 원인을 표시합니다.

Flag 해석은 kernel↔user 방향과 config, query, event 원인에 따라 달라집니다. Netlink pid는 방향을 구분하도록 user→kernel이면 0, kernel→userspace이면 event를 만든 process ID로 설정합니다.

Event notification을 받으려면 program이 multicast group `XFRMNLGRP_AEVENTS`를 subscribe해야 합니다.

----------------------

nlmsghdr:aevent_id:optional-TLVs.

The netlink message types are:

XFRM_MSG_NEWAE and XFRM_MSG_GETAE.

A XFRM_MSG_GETAE does not have TLVs.

A XFRM_MSG_NEWAE will have at least two TLVs (as is
discussed further below).

aevent_id structure looks like::

   struct xfrm_aevent_id {
             struct xfrm_usersa_id           sa_id;
             xfrm_address_t                  saddr;
             __u32                           flags;
             __u32                           reqid;
   };

The unique SA is identified by the combination of xfrm_usersa_id,
reqid and saddr.

flags are used to indicate different things. The possible
flags are::

        XFRM_AE_RTHR=1, /* replay threshold*/
        XFRM_AE_RVAL=2, /* replay value */
        XFRM_AE_LVAL=4, /* lifetime value */
        XFRM_AE_ETHR=8, /* expiry timer threshold */
        XFRM_AE_CR=16, /* Event cause is replay update */
        XFRM_AE_CE=32, /* Event cause is timer expiry */
        XFRM_AE_CU=64, /* Event cause is policy update */

How these flags are used is dependent on the direction of the
message (kernel<->user) as well the cause (config, query or event).
This is described below in the different messages.

The pid will be set appropriately in netlink to recognize direction
(0 to the kernel and pid = processid that created the event
when going from kernel to user space)

A program needs to subscribe to multicast group XFRMNLGRP_AEVENTS
to get notified of these events.

2) TLVS reflect the different parameters:

AE TLV parameter

87-109

`XFRMA_LTIME_VAL`은 직전 event 이후 현재까지 누적된 byte lifetime counter를 전달합니다.

`XFRMA_REPLAY_VAL`은 직전 event 이후 현재 replay sequence counter를 전달합니다.

`XFRMA_REPLAY_THRESH`는 replay sequence가 초과할 때 kernel이 event를 발생시키는 threshold입니다.

`XFRMA_ETIMER_THRESH`는 event를 rate-limit하는 Nagle 값으로 사용하는 millisecond timer입니다.

XFRM AE TLV
TLV내용
XFRMA_LTIME_VALCurrent lifetime byte counter
XFRMA_REPLAY_VALCurrent replay sequence counter
XFRMA_REPLAY_THRESHReplay event packet threshold
XFRMA_ETIMER_THRESHEvent rate-limit timer(ms)

Value와 event threshold를 구분합니다.

-----------------------------------------

a) byte value (XFRMA_LTIME_VAL)

This TLV carries the running/current counter for byte lifetime since
last event.

b)replay value (XFRMA_REPLAY_VAL)

This TLV carries the running/current counter for replay sequence since
last event.

c)replay threshold (XFRMA_REPLAY_THRESH)

This TLV carries the threshold being used by the kernel to trigger events
when the replay sequence is exceeded.

d) expiry timer (XFRMA_ETIMER_THRESH)

This is a timer value in milliseconds which is used as the nagle
value to rate limit the events.

3) Default configurations for the parameters:

Default threshold configuration

110-131

기본적으로 `XFRMNLGRP_AEVENTS` multicast group을 듣는 listener가 하나 이상 없으면 event를 꺼 둡니다.

SA를 설치하는 program이 두 threshold를 지정해야 하지만 racoon 같은 기존 application과의 호환성을 위해 생략 시 default 값을 제공합니다.

`/proc/sys/net/core/sysctl_xfrm_aevent_etime`은 `XFRMA_ETIMER_THRESH` 기본값을 100ms 단위로 지정하며 default 10은 1초입니다.

`/proc/sys/net/core/sysctl_xfrm_aevent_rseqth`는 `XFRMA_REPLAY_THRESH` 기본값을 packet count 단위로 지정하며 default는 2 packet입니다.

XFRM AE default sysctl
Path단위Default
sysctl_xfrm_aevent_etime100ms10 = 1 second
sysctl_xfrm_aevent_rseqthPackets2 packets

System-wide event coalescing 기본값입니다.

---------------------------------------------

By default these events should be turned off unless there is
at least one listener registered to listen to the multicast
group XFRMNLGRP_AEVENTS.

Programs installing SAs will need to specify the two thresholds, however,
in order to not change existing applications such as racoon
we also provide default threshold values for these different parameters
in case they are not specified.

the two sysctls/proc entries are:

a) /proc/sys/net/core/sysctl_xfrm_aevent_etime
used to provide default values for the XFRMA_ETIMER_THRESH in incremental
units of time of 100ms. The default is 10 (1 second)

b) /proc/sys/net/core/sysctl_xfrm_aevent_rseqth
used to provide default values for XFRMA_REPLAY_THRESH parameter
in incremental packet count. The default is two packets.

4) Message types

GETAE와 NEWAE 방향별 동작

132-179

Userspace가 kernel에 보내는 `XFRM_MSG_GETAE`에는 TLV가 없습니다. 응답은 query 조건에 맞춘 `XFRM_MSG_NEWAE`입니다.

응답에는 항상 `XFRMA_LTIME_VAL`과 `XFRMA_REPLAY_VAL`이 있습니다. GETAE에서 `XFRM_AE_RTHR`를 설정하면 replay threshold, `XFRM_AE_ETHR`를 설정하면 expiry timer threshold도 받습니다.

`XFRM_MSG_NEWAE`는 userspace가 특정 SA를 configure할 때, kernel이 event를 알릴 때, GETAE에 응답할 때 모두 사용합니다.

User→kernel configuration에서는 적절한 TLV를 넣어 value나 threshold를 갱신합니다. Kernel은 success/failure 응답을 보내고 성공하면 listener에도 NEWAE event를 보냅니다.

GETAE에 대한 kernel→user 응답은 항상 lifetime·replay value TLV를 포함하고, 명시적으로 요청한 threshold TLV도 포함합니다.

Userspace가 NEWAE로 SA value나 threshold를 설정해 발생한 kernel→user event에는 `XFRM_AE_CU` flag를 넣고 lifetime·replay value TLV를 항상 포함합니다.

Replay threshold 초과나 timeout으로 발생한 event는 각각 `XFRM_AE_CR` 또는 `XFRM_AE_CE`를 설정합니다. 두 flag는 상호 배타적이며 message에는 lifetime·replay value TLV가 항상 있습니다.

AE message 방향
방향·type필수 내용선택·원인
User→Kernel GETAEaevent_id, TLV 없음RTHR/ETHR flag로 threshold 요청
Kernel→User NEWAE responseLTIME_VAL + REPLAY_VAL요청 threshold TLV
User→Kernel NEWAE config변경할 value/threshold TLVSuccess/failure reply
Kernel→User NEWAE update eventLTIME_VAL + REPLAY_VALXFRM_AE_CU
Kernel→User threshold eventLTIME_VAL + REPLAY_VALCR 또는 CE

Query, configure, response와 event payload를 구분합니다.

----------------

a) XFRM_MSG_GETAE issued by user-->kernel.
   XFRM_MSG_GETAE does not carry any TLVs.

The response is a XFRM_MSG_NEWAE which is formatted based on what
XFRM_MSG_GETAE queried for.

The response will always have XFRMA_LTIME_VAL and XFRMA_REPLAY_VAL TLVs.
* if XFRM_AE_RTHR flag is set, then XFRMA_REPLAY_THRESH is also retrieved
* if XFRM_AE_ETHR flag is set, then XFRMA_ETIMER_THRESH is also retrieved

b) XFRM_MSG_NEWAE is issued by either user space to configure
   or kernel to announce events or respond to a XFRM_MSG_GETAE.

i) user --> kernel to configure a specific SA.

any of the values or threshold parameters can be updated by passing the
appropriate TLV.

A response is issued back to the sender in user space to indicate success
or failure.

In the case of success, additionally an event with
XFRM_MSG_NEWAE is also issued to any listeners as described in iii).

ii) kernel->user direction as a response to XFRM_MSG_GETAE

The response will always have XFRMA_LTIME_VAL and XFRMA_REPLAY_VAL TLVs.

The threshold TLVs will be included if explicitly requested in
the XFRM_MSG_GETAE message.

iii) kernel->user to report as event if someone sets any values or
     thresholds for an SA using XFRM_MSG_NEWAE (as described in #i above).
     In such a case XFRM_AE_CU flag is set to inform the user that
     the change happened as a result of an update.
     The message will always have XFRMA_LTIME_VAL and XFRMA_REPLAY_VAL TLVs.

iv) kernel->user to report event when replay threshold or a timeout
    is exceeded.

In such a case either XFRM_AE_CR (replay exceeded) or XFRM_AE_CE (timeout
happened) is set to inform the user what happened.
Note the two flags are mutually exclusive.
The message will always have XFRMA_LTIME_VAL and XFRMA_REPLAY_VAL TLVs.

Exceptions to threshold settings

Timer threshold 예외

180-189

Traffic이 burst로 들어오고 packet이 없는 동안 timer threshold가 만료되는 SA에서는 특수 동작이 나타납니다. Timer expiry 뒤 첫 packet이 오면 새 timeout 기간이나 packet threshold를 기다리지 않고 즉시 timeout event를 발생시킵니다. 이는 구현 단순성과 효율을 위한 선택입니다.

--------------------------------

If you have an SA that is getting hit by traffic in bursts such that
there is a period where the timer threshold expires with no packets
seen, then an odd behavior is seen as follows:
The first packet arrival after a timer expiry will trigger a timeout
event; i.e we don't wait for a timeout period or a packet threshold
to be reached. This is done for simplicity and efficiency reasons.

-JHS