]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
automerge commit
authorAutomerge script <automerge@asterisk.org>
Thu, 12 Oct 2006 19:02:56 +0000 (19:02 +0000)
committerAutomerge script <automerge@asterisk.org>
Thu, 12 Oct 2006 19:02:56 +0000 (19:02 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.2-netsec@44970 65c4cc65-6c06-0410-ace0-fbb531ad65f3

channels/chan_sip.c
include/asterisk/utils.h
netsock.c
utils.c

index b8fae44bce3dd7fba9a66bfd8bec25b07a8e36d3..4e6b105b407f6e7d11a4dd68125b1b9d0aa39214 100644 (file)
@@ -12966,10 +12966,13 @@ static int reload_config(void)
                } else {
                        /* Allow SIP clients on the same host to access us: */
                        const int reuseFlag = 1;
+
                        setsockopt(sipsock, SOL_SOCKET, SO_REUSEADDR,
                                   (const char*)&reuseFlag,
                                   sizeof reuseFlag);
 
+                       ast_enable_packet_fragmentation(sipsock);
+
                        if (bind(sipsock, (struct sockaddr *)&bindaddr, sizeof(bindaddr)) < 0) {
                                ast_log(LOG_WARNING, "Failed to bind to %s:%d: %s\n",
                                ast_inet_ntoa(iabuf, sizeof(iabuf), bindaddr.sin_addr), ntohs(bindaddr.sin_port),
index b6b85df4e8cfae62ae88ce3eecc6beb4b6063713..0f1df400319f5b0d81cd2b2c44074b7c4d7c296f 100644 (file)
@@ -235,4 +235,19 @@ char *ast_process_quotes_and_slashes(char *start, char find, char replace_with);
 int getloadavg(double *list, int nelem);
 #endif
 
+/*!
+  \brief Disable PMTU discovery on a socket
+  \param sock The socket to manipulate
+  \return Nothing
+
+  On Linux, UDP sockets default to sending packets with the Dont Fragment (DF)
+  bit set. This is supposedly done to allow the application to do PMTU
+  discovery, but Asterisk does not do this.
+
+  Because of this, UDP packets sent by Asterisk that are larger than the MTU
+  of any hop in the path will be lost. This function can be called on a socket
+  to ensure that the DF bit will not be set.
+ */
+void ast_enable_packet_fragmentation(int sock);
+
 #endif /* _ASTERISK_UTILS_H */
index 386f15660c60e91d527faf1e0b2e306279539f52..bcba51c6882d97ffa7b7a33a4473b34cd9de044b 100644 (file)
--- a/netsock.c
+++ b/netsock.c
@@ -147,6 +147,8 @@ struct ast_netsock *ast_netsock_bindaddr(struct ast_netsock_list *list, struct i
        if (setsockopt(netsocket, IPPROTO_IP, IP_TOS, &tos, sizeof(tos))) 
                ast_log(LOG_WARNING, "Unable to set TOS to %d\n", tos);
 
+       ast_enable_packet_fragmentation(netsocket);
+
        ns = malloc(sizeof(struct ast_netsock));
        if (ns) {
                /* Establish I/O callback for socket read */
diff --git a/utils.c b/utils.c
index 2e99ad17d13ca5418afa01c1b429c2cb98dac0b1..8f3dbcd7b32ea02e1b4173a862f42b0c4dd52b00 100644 (file)
--- a/utils.c
+++ b/utils.c
@@ -895,3 +895,14 @@ char *ast_process_quotes_and_slashes(char *start, char find, char replace_with)
                *dataPut = 0;
        return dataPut;
 }
+
+void ast_enable_packet_fragmentation(int sock)
+{
+#ifdef __linux__
+       int val = IP_PMTUDISC_DONT;
+       
+       if (setsockopt(sock, IPPROTO_IP, IP_MTU_DISCOVER, &val, sizeof(val)))
+               ast_log(LOG_WARNING, "Unable to disable PMTU discovery. Large UDP packets may fail to be delivered when sent from this socket.\n");
+#endif
+}
+