Check ICE ufrag and pwd in WHIP PATCH requests.

This commit is contained in:
Juliusz Chroboczek
2025-03-08 22:37:20 +01:00
parent dcbdfebf2a
commit 078332f73a
2 changed files with 37 additions and 1 deletions
+15 -1
View File
@@ -346,7 +346,7 @@ func whipResourceHandler(w http.ResponseWriter, r *http.Request) {
return
}
_, _, candidates, err := parseSDPFrag(
ufrag, pwd, candidates, err := parseSDPFrag(
http.MaxBytesReader(w, r.Body, sdpLimit),
)
if err != nil {
@@ -354,6 +354,20 @@ func whipResourceHandler(w http.ResponseWriter, r *http.Request) {
http.Error(w, "bad request", http.StatusBadRequest)
return
}
u, p, err := c.UFragPwd()
if err != nil {
log.Printf("WHIP UfragPwd: %v", err)
http.Error(w, "internal server error",
http.StatusInternalServerError,
)
return
}
if u != ufrag || p != pwd {
http.Error(w, "ICE restarts are not supported yet",
http.StatusUnprocessableEntity,
)
return
}
for _, init := range candidates {
err := c.GotICECandidate(init)
if err != nil {