DPDK IPv4 reassembly
Page content
rte_ipv4_frag_reassemble_packet()
ip_frag_find()
- 기존에 존재하는 flow면 해당 flow를 저장한 entry 정보를(
ip_frag_pkt *pkg
) - 신규 flow인 경우 해당 신규 flow를 저장할 신규 혹은 재사용된 entry를 return함
- 추가할 수 있는 통계
- 신규 flow?
- 기존 flow에 정상 추가
- 기존 flow에 비정상 추가(기존 flow가 timeouted)
- 이도 저도 아닌 상황(할당 실패)
- LRU entry free
tbl->max_entries
tbl->use_entries
- return
- 기존 존재하는 flow, 신규 할당한 flow entry 혹은 NULL
- 만일 NULL을 return하면 현재 수신한 mbuf를 death row에 추가한다. 불쌍한…
ip_frag_lookup()
- if matched entry is exist
- return flow entry
- return
&stale
if time-outed entry is exist
- if new entry
- return NULL
- return free for new empty entry
- return
&stale
if time-outed entry is exist
ip_frag_key_cmp()
return 0 if key matched
- if matched entry is exist
- if
ip_frag_lookup()
returns NULL- if stale entry is not NULL, remove it with
ip_frag_tbl_del()
and save to free for reuse - even if free is not NULL, check if
tbl->use_entries
does not exceedtbl->max_entries
. If so, check if the LRU entry is timeouted, then free the LRU entry. Otherwise, fail to add new entry to the tbl - tbl에서 할당하는 것고
max_entries
,use_entries
간의 차이점은?? - If free is not NULL, add new flow to this free entry
- if stale entry is not NULL, remove it with
- if
ip_frag_lookup()
returns non-NULL- if timeouted, reuse it for the received flow
tbl->use_entries—; del_num++
- 기존에 존재하는 flow면 해당 flow를 저장한 entry 정보를(
ip_frag_process()
rte_ip_frag_free_death_row()
주기적으로 호출해줘야 함