Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F162186117
D31733.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D31733.diff
View Options
diff --git a/sys/netinet/sctp_pcb.c b/sys/netinet/sctp_pcb.c
--- a/sys/netinet/sctp_pcb.c
+++ b/sys/netinet/sctp_pcb.c
@@ -3012,7 +3012,6 @@
} else {
uint16_t first, last, candidate;
uint16_t count;
- int done;
if (ip_inp->inp_flags & INP_HIGHPORT) {
first = MODULE_GLOBAL(ipport_hifirstauto);
@@ -3040,25 +3039,22 @@
count = last - first + 1; /* number of candidates */
candidate = first + sctp_select_initial_TSN(&inp->sctp_ep) % (count);
- done = 0;
- while (!done) {
+ for (;;) {
if (sctp_isport_inuse(inp, htons(candidate), inp->def_vrf_id) == NULL) {
- done = 1;
+ lport = htons(candidate);
+ break;
}
- if (!done) {
- if (--count == 0) {
- SCTP_INP_WUNLOCK(inp);
- SCTP_INP_INFO_WUNLOCK();
- SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_PCB, EADDRINUSE);
- return (EADDRINUSE);
- }
- if (candidate == last)
- candidate = first;
- else
- candidate = candidate + 1;
+ if (--count == 0) {
+ SCTP_INP_WUNLOCK(inp);
+ SCTP_INP_INFO_WUNLOCK();
+ SCTP_LTRACE_ERR_RET(inp, NULL, NULL, SCTP_FROM_SCTP_PCB, EADDRINUSE);
+ return (EADDRINUSE);
}
+ if (candidate == last)
+ candidate = first;
+ else
+ candidate = candidate + 1;
}
- lport = htons(candidate);
}
if (inp->sctp_flags & (SCTP_PCB_FLAGS_SOCKET_GONE |
SCTP_PCB_FLAGS_SOCKET_ALLGONE)) {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Jul 11, 4:59 PM (1 h, 38 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
34966934
Default Alt Text
D31733.diff (1 KB)
Attached To
Mode
D31733: sctp: Simplify the free port search in sctp_inpcb_bind()
Attached
Detach File
Event Timeline
Log In to Comment