SO_REUSEADDR

SO_REUSEADDR

一个网络应用程序只能绑定一个端口( 一个套接字只能绑定一个端口 )。

实际上,默认的情况下,如果一个网络应用程序的一个套接字 绑定了一个端口( 占用了 8000 ),这时候,别的套接字就无法使用这个端口( 8000 ), 验证例子如下:

#include <arpa/inet.h>
#include <netinet/in.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <unistd.h>

int main(int argc, char* argv[])
{
    int sockfd_one;
    int err_log;
    sockfd_one = socket(AF_INET, SOCK_DGRAM, 0); //创建UDP套接字one
    if (sockfd_one < 0) {
        perror("sockfd_one");
        exit(-1);
    }

    // 设置本地网络信息
    struct sockaddr_in my_addr;
    bzero(&my_addr, sizeof(my_addr));
    my_addr.sin_family = AF_INET;
    my_addr.sin_port = htons(8000); // 端口为8000
    my_addr.sin_addr.s_addr = htonl(INADDR_ANY);

    // 绑定,端口为8000
    err_log = bind(sockfd_one, (struct sockaddr*)&my_addr, sizeof(my_addr));
    if (err_log != 0) {
        perror("bind sockfd_one");
        close(sockfd_one);
        exit(-1);
    }

    int sockfd_two;
    sockfd_two = socket(AF_INET, SOCK_DGRAM, 0); //创建UDP套接字two
    if (sockfd_two < 0) {
        perror("sockfd_two");
        exit(-1);
    }

    // 新套接字sockfd_two,继续绑定8000端口,绑定失败
    // 因为8000端口已被占用,默认情况下,端口没有释放,无法绑定
    err_log = bind(sockfd_two, (struct sockaddr*)&my_addr, sizeof(my_addr));
    if (err_log != 0) {
        perror("bind sockfd_two");
        close(sockfd_two);
        exit(-1);
    }

    close(sockfd_one);
    close(sockfd_two);

    return 0;
}
m@ubuntu:~/test$ gcc 1.c
m@ubuntu:~/test$ ./a.out 
bind sockfd_two: Address already in use

那如何让sockfd_one, sockfd_two两个套接字都能成功绑定8000端口呢?这时候就需要要到端口复用了。端口复用允许在一个应用程序可以把 n 个套接字绑在一个端口上而不出错。

设置socket的SO_REUSEADDR选项,即可实现端口复用:

int opt = 1;
// sockfd为需要端口复用的套接字
setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, (const void *)&opt, sizeof(opt));

SO_REUSEADDR可以用在以下四种情况下。 (摘自《Unix网络编程》卷一,即UNPv1)

1、当有一个有相同本地地址和端口的socket1处于TIME_WAIT状态时,而你启动的程序的socket2要占用该地址和端口,你的程序就要用到该选项。

2、SO_REUSEADDR允许同一port上启动同一服务器的多个实例(多个进程)。但每个实例绑定的IP地址是不能相同的。在有多块网卡或用IP Alias技术的机器可以测试这种情况。

3、SO_REUSEADDR允许单个进程绑定相同的端口到多个socket上,但每个socket绑定的ip地址不同。这和2很相似,区别请看UNPv1。

4、SO_REUSEADDR允许完全相同的地址和端口的重复绑定。但这只用于UDP的多播,不用于TCP。

需要注意的是,设置端口复用函数要在绑定之前调用,而且只要绑定到同一个端口的所有套接字都得设置复用:

// sockfd_one, sockfd_two都要设置端口复用
// 在sockfd_one绑定bind之前,设置其端口复用
int opt = 1;
setsockopt( sockfd_one, SOL_SOCKET,SO_REUSEADDR, (const void *)&opt, sizeof(opt) );
err_log = bind(sockfd_one, (struct sockaddr*)&my_addr, sizeof(my_addr));
 
// 在sockfd_two绑定bind之前,设置其端口复用
opt = 1;
setsockopt( sockfd_two, SOL_SOCKET,SO_REUSEADDR,(const void *)&opt, sizeof(opt) );
err_log = bind(sockfd_two, (struct sockaddr*)&my_addr, sizeof(my_addr));

端口复用的完整代码如下

#include <arpa/inet.h>
#include <netinet/in.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <unistd.h>

int main(int argc, char* argv[])
{
    int sockfd_one;
    int err_log;
    sockfd_one = socket(AF_INET, SOCK_DGRAM, 0); //创建UDP套接字one
    if (sockfd_one < 0) {
        perror("sockfd_one");
        exit(-1);
    }

    // 设置本地网络信息
    struct sockaddr_in my_addr;
    bzero(&my_addr, sizeof(my_addr));
    my_addr.sin_family = AF_INET;
    my_addr.sin_port = htons(8000); // 端口为8000
    my_addr.sin_addr.s_addr = htonl(INADDR_ANY);

    // 在sockfd_one绑定bind之前,设置其端口复用
    int opt = 1;
    setsockopt(sockfd_one, SOL_SOCKET, SO_REUSEADDR,
        (const void*)&opt, sizeof(opt));

    // 绑定,端口为8000
    err_log = bind(sockfd_one, (struct sockaddr*)&my_addr, sizeof(my_addr));
    if (err_log != 0) {
        perror("bind sockfd_one");
        close(sockfd_one);
        exit(-1);
    }

    int sockfd_two;
    sockfd_two = socket(AF_INET, SOCK_DGRAM, 0); //创建UDP套接字two
    if (sockfd_two < 0) {
        perror("sockfd_two");
        exit(-1);
    }

    // 在sockfd_two绑定bind之前,设置其端口复用
    opt = 1;
    setsockopt(sockfd_two, SOL_SOCKET, SO_REUSEADDR,
        (const void*)&opt, sizeof(opt));

    // 新套接字sockfd_two,继续绑定8000端口,成功
    err_log = bind(sockfd_two, (struct sockaddr*)&my_addr, sizeof(my_addr));
    if (err_log != 0) {
        perror("bind sockfd_two");
        close(sockfd_two);
        exit(-1);
    }

    close(sockfd_one);
    close(sockfd_two);

    return 0;
}

端口复用允许在一个应用程序可以把 n 个套接字绑在一个端口上而不出错。同时,这 n 个套接字发送信息都正常,没有问题。但是,这些套接字并不是所有都能读取信息,只有最后一个套接字会正常接收数据。其实相当于把接管了。

下面,我们在之前的代码上,添加两个线程,分别负责接收sockfd_one,sockfd_two的信息:

#include <arpa/inet.h>
#include <netinet/in.h>
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/socket.h>
#include <unistd.h>

// 线程1的回调函数
void* recv_one(void* arg)
{
    printf("===========recv_one==============\n");
    int sockfd = (int)arg;
    while (1) {
        int recv_len;
        char recv_buf[512] = "";
        struct sockaddr_in client_addr;
        char cli_ip[INET_ADDRSTRLEN] = ""; //INET_ADDRSTRLEN=16
        socklen_t cliaddr_len = sizeof(client_addr);

        recv_len = recvfrom(sockfd, recv_buf, sizeof(recv_buf), 0, (struct sockaddr*)&client_addr, &cliaddr_len);
        inet_ntop(AF_INET, &client_addr.sin_addr, cli_ip, INET_ADDRSTRLEN);
        printf("\nip:%s ,port:%d\n", cli_ip, ntohs(client_addr.sin_port));
        printf("sockfd_one =========== data(%d):%s\n", recv_len, recv_buf);
    }

    return NULL;
}

// 线程2的回调函数
void* recv_two(void* arg)
{
    printf("+++++++++recv_two++++++++++++++\n");
    int sockfd = (int)arg;
    while (1) {
        int recv_len;
        char recv_buf[512] = "";
        struct sockaddr_in client_addr;
        char cli_ip[INET_ADDRSTRLEN] = ""; //INET_ADDRSTRLEN=16
        socklen_t cliaddr_len = sizeof(client_addr);

        recv_len = recvfrom(sockfd, recv_buf, sizeof(recv_buf), 0, (struct sockaddr*)&client_addr, &cliaddr_len);
        inet_ntop(AF_INET, &client_addr.sin_addr, cli_ip, INET_ADDRSTRLEN);
        printf("\nip:%s ,port:%d\n", cli_ip, ntohs(client_addr.sin_port));
        printf("sockfd_two @@@@@@@@@@@@@@@ data(%d):%s\n", recv_len, recv_buf);
    }

    return NULL;
}

int main(int argc, char* argv[])
{
    int err_log;

    int sockfd_one;
    sockfd_one = socket(AF_INET, SOCK_DGRAM, 0); //创建UDP套接字one
    if (sockfd_one < 0) {
        perror("sockfd_one");
        exit(-1);
    }

    // 设置本地网络信息
    struct sockaddr_in my_addr;
    bzero(&my_addr, sizeof(my_addr));
    my_addr.sin_family = AF_INET;
    my_addr.sin_port = htons(8000); // 端口为8000
    my_addr.sin_addr.s_addr = htonl(INADDR_ANY);

    // 在sockfd_one绑定bind之前,设置其端口复用
    int opt = 1;
    setsockopt(sockfd_one, SOL_SOCKET, SO_REUSEADDR,
        (const void*)&opt, sizeof(opt));

    // 绑定,端口为8000
    err_log = bind(sockfd_one, (struct sockaddr*)&my_addr, sizeof(my_addr));
    if (err_log != 0) {
        perror("bind sockfd_one");
        close(sockfd_one);
        exit(-1);
    }

    //接收信息线程1
    pthread_t tid_one;
    pthread_create(&tid_one, NULL, recv_one, (void*)sockfd_one);

    int sockfd_two;
    sockfd_two = socket(AF_INET, SOCK_DGRAM, 0); //创建UDP套接字two
    if (sockfd_two < 0) {
        perror("sockfd_two");
        exit(-1);
    }

    // 在sockfd_two绑定bind之前,设置其端口复用
    opt = 1;
    setsockopt(sockfd_two, SOL_SOCKET, SO_REUSEADDR,
        (const void*)&opt, sizeof(opt));

    // 新套接字sockfd_two,继续绑定8000端口,成功
    err_log = bind(sockfd_two, (struct sockaddr*)&my_addr, sizeof(my_addr));
    if (err_log != 0) {
        perror("bind sockfd_two");
        close(sockfd_two);
        exit(-1);
    }
    //接收信息线程2
    pthread_t tid_two;
    pthread_create(&tid_two, NULL, recv_two, (void*)sockfd_two);

    while (1) { // 让程序阻塞在这,不结束
        NULL;
    }

    close(sockfd_one);
    close(sockfd_two);

    return 0;
}

接着,通过客户端给这个服务器发送数据,结果显示,只有最后一个套接字sockfd_two会正常接收数据:

m@ubuntu:~/test$ gcc 1.c -lpthread                                              ^
m@ubuntu:~/test$ ./a.out 
===========recv_one==============
+++++++++recv_two++++++++++++++

ip:127.0.0.1 ,port:36348
sockfd_two @@@@@@@@@@@@@@@ data(4):222


ip:127.0.0.1 ,port:47277
sockfd_two @@@@@@@@@@@@@@@ data(11):3333333333

另一个终端编译并运行如下程序

/*
 * mx
 */
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<sys/socket.h>
#include<netinet/in.h>
const int SERV_PORT=8000;
const int MAXLINE=2048;

void dg_cli(FILE* fp,int sockfd,const struct sockaddr* pservaddr,socklen_t servlen)
{
    int n;
    char sendline[MAXLINE],recvline[MAXLINE+1];
    while(fgets(sendline,MAXLINE,fp)!=NULL)
    {
        if(sendto(sockfd,sendline,strlen(sendline),0,pservaddr,servlen)<0)
        {
            perror("sendto error");
            exit(1);
        }
        if((n=recvfrom(sockfd,recvline,MAXLINE,0,NULL,NULL))<0)
        {
            perror("recvfrom error");
            exit(1);
        }
        recvline[n]='\0';
        fputs(recvline,stdout);
    }
}

int main(int argc,char** argv)
{
    int sockfd,t;
    struct sockaddr_in servaddr;
    if(argc!=2)
    {
        perror("usage: udpcli<IPaddress>");
        exit(1);
    }
    bzero(&servaddr,sizeof(servaddr));
    servaddr.sin_family=AF_INET;
    servaddr.sin_port=htons(SERV_PORT);
    if((t=inet_pton(AF_INET,argv[1],&servaddr.sin_addr))<=0)
    {
        perror("inet_pton error");
        exit(1);
    }
    if((sockfd=socket(AF_INET,SOCK_DGRAM,0))<0)
    {
        perror("socket error");
        exit(1);
    }
    dg_cli(stdin,sockfd,(struct sockaddr*)&servaddr,sizeof(servaddr));
    exit(0);
}
m@ubuntu:~/test$ gcc 2.c
m@ubuntu:~/test$ ./a.out 127.0.0.1
222
^C
m@ubuntu:~/test$ ./a.out 127.0.0.1
3333333333

我们上面的用法,实际上没有太大的意义。端口复用最常用的用途应该是防止服务器重启时之前绑定的端口还未释放或者程序突然退出而系统没有释放端口。这种情况下如果设定了端口复用,则新启动的服务器进程可以直接绑定端口。如果没有设定端口复用,绑定会失败,提示ADDR已经在使用中——那只好等等再重试了,麻烦!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值