免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: yarco1
打印 上一主题 下一主题

为什么有fork了就会accept: Invalid argument [复制链接]

论坛徽章:
0
11 [报告]
发表于 2005-11-16 13:39 |只看该作者
我没看过telnet具体协议...
不过telnet能取web page, 也能拿到email.
我就把它当成是一个很初级的网络联结程序了....

我刚刚把//fork那部分拿掉了

  1.                 //check client ip
  2.                 //fork
  3.                 //pid = fork();
  4.                 //if (pid==0) _exit(0);       
  5.                 send(tmp_sd, "i love you!n", strlen("i love you!n"), 0);
复制代码

然后compile. 再:

  1. server:
  2. [yarco@localhost Debug]$ ./mydict.c &
  3. [1] 4857

  4. client:
  5. [yarco@localhost Debug]$ telnet localhost 2628
  6. Trying 127.0.0.1...
  7. Connected to localhost.localdomain (127.0.0.1).
  8. Escape character is '^]'.
  9. i love you!
  10. Connection closed by foreign host.
复制代码

看可以传过了阿...

我再用fork...

  1.                 //check client ip
  2.                 //fork
  3.                 pid = fork();
  4.                 if (pid==0) _exit(0);       
  5.                 //send(tmp_sd, "i love you!n", strlen("i love you!n"), 0);
  6.                
  7.                 close(tmp_sd);
复制代码

complie...再..

  1. server:
  2. [yarco@localhost Debug]$ kill %1
  3. [yarco@localhost Debug]$ jobs
  4. [1]+  已终止               ./mydict.c
  5. [yarco@localhost Debug]$ jobs
  6. [yarco@localhost Debug]$ ./mydict.c &
  7. [1] 4954
  8. [yarco@localhost Debug]$

  9. client:
  10. [yarco@localhost Debug]$ telnet localhost 2628
  11. Trying 127.0.0.1...
  12. Connected to localhost.localdomain (127.0.0.1).
  13. Escape character is '^]'.
  14. Connection closed by foreign host.

  15. server:
  16. [yarco@localhost Debug]$ accept: Invalid argument

  17. [1]+  Done                    ./mydict.c
复制代码

就退出了...

论坛徽章:
0
12 [报告]
发表于 2005-11-16 13:59 |只看该作者
那请问, 假如父进程listen, 然后有connect了, 就fork出子进程处理...这个怎么做到的?
看apache上的不是这样子的么?

论坛徽章:
0
13 [报告]
发表于 2005-11-16 14:16 |只看该作者
编译测试没问题,有fork也ok
[***@localhost tmp]$ telnet localhost 2628
Trying 127.0.0.1...
Connected to localhost.localdomain (127.0.0.1).
Escape character is '^]'.
Connection closed by foreign host.

论坛徽章:
0
14 [报告]
发表于 2005-11-16 14:28 |只看该作者
服务器端呢?
还在运行吗?

正常情况下应该:

  1. [yarco@localhost Debug]$ jobs
  2. [1]+  Running                 ./mydict.c &
  3. [yarco@localhost Debug]$ jobs
  4. [1]+  Running                 ./mydict.c &
复制代码

应该这样的o...

刚刚又把代码该了下

  1.                 //check client ip
  2.                 //fork
  3.                 pid = fork();
  4.                 if (pid==0) {
  5.                         send(tmp_sd, "i love you!\n", strlen("i love you!\n"), 0);
  6.                         _exit(0);       
  7.                 }
  8.                
  9.                 close(tmp_sd);
复制代码

意图是connect之后, server fork一个子进程, send过去, 然后子进程退出.
父进程依然listen.

不过client:

  1. [yarco@localhost Debug]$ telnet localhost 2628
  2. Trying 127.0.0.1...
  3. Connected to localhost.localdomain (127.0.0.1).
  4. Escape character is '^]'.
  5. Connection closed by foreign host.
复制代码

没收到.
接zhe, server退出了, 还是那个:

  1. [yarco@localhost Debug]$ accept: Invalid argument

  2. [1]+  Done                    ./mydict.c
复制代码

[ 本帖最后由 yarco1 于 2005-11-16 14:34 编辑 ]

论坛徽章:
0
15 [报告]
发表于 2005-11-16 16:03 |只看该作者
[@localhost tmp]$ ./t &
[1] 19245
[@localhost tmp]$ jobs
[1]+  Running                 ./t &
[@localhost tmp]$ telnet localhost 2628
Trying 127.0.0.1...
Connected to localhost.localdomain (127.0.0.1).
Escape character is '^]'.
Connection closed by foreign host.
[tdtt@localhost tmp]$ jobs
[1]+  Running                 ./t &

论坛徽章:
0
16 [报告]
发表于 2005-11-16 16:37 |只看该作者
yun了....这怎么回事呢?....
偶电脑太特殊了??

再请教一下, 一般server listen, 然后fork出子进程处理具体事务是不是这样写的?
万分感谢.

论坛徽章:
0
17 [报告]
发表于 2005-11-16 16:39 |只看该作者
你把sd和进程的pid打出来看看不就知道了?

论坛徽章:
0
18 [报告]
发表于 2005-11-16 16:49 |只看该作者
偶还是看不出来是怎么回事...
中间循环修改为:

  1.         while(1) {
  2.                 tmp_sd = accept(sd, (struct sockaddr*)&tmp_sin, &len);
  3.                 printf("pid %dtsd %dn", getpid(), sd);
  4.                
  5.                 if (tmp_sd == -1) {
  6.                         perror("accept");
  7.                         exit(0);
  8.                 }
  9.                
  10.                 //check client ip
  11.                 //fork
  12.                 pid = fork();
  13.                 if (pid==0) {
  14.                         printf("son pid %dtsd %dn", getpid(), sd);
  15.                         _exit(0);
  16.                 }
  17.                
  18.                 close(tmp_sd);
  19.         }
复制代码

执行情况:

  1. [yarco@localhost Debug]$ ./mydict.c &
  2. [1] 3586
  3. [yarco@localhost Debug]$ telnet localhost 2628
  4. Trying 127.0.0.1...
  5. Connected to localhost.localdomain (127.0.0.1).
  6. Escape character is '^]'.
  7. pid 3586        sd 3
  8. accept: Invalid argument
  9. Connection closed by foreign host.
  10. [1]+  Done                    ./mydict.c
  11. [yarco@localhost Debug]$
复制代码


想来想去想不明白....
accept错误怎么在printf之后呢?
要说是父进程进入另一个循环了, 那子进程至少也得printf一下吧.
何况, 如果把fork部分去掉, 程序是正常的阿...照道理说, fork之后, 资源分开了, 也不会有冲突的阿.

[ 本帖最后由 yarco1 于 2005-11-16 16:57 编辑 ]

论坛徽章:
0
19 [报告]
发表于 2005-11-16 17:04 |只看该作者
偶fork部分去掉了

  1.         while(1) {
  2.                 tmp_sd = accept(sd, (struct sockaddr*)&tmp_sin, &len);
  3.                 printf("pid %dtsd %dn", getpid(), sd);
  4.                
  5.                 if (tmp_sd == -1) {
  6.                         perror("accept");
  7.                         exit(0);
  8.                 }
  9.                        
  10.                 close(tmp_sd);
  11.         }
复制代码

执行情况:

  1. [yarco@localhost Debug]$ ./mydict.c &
  2. [1] 3833
  3. [yarco@localhost Debug]$ telnet localhost 2628
  4. Trying 127.0.0.1...
  5. Connected to localhost.localdomain (127.0.0.1).
  6. Escape character is '^]'.
  7. pid 3833        sd 3
  8. Connection closed by foreign host.
  9. [yarco@localhost Debug]$ telnet localhost 2628
  10. Trying 127.0.0.1...
  11. Connected to localhost.localdomain (127.0.0.1).
  12. Escape character is '^]'.
  13. pid 3833        sd 3
  14. Connection closed by foreign host.
  15. [yarco@localhost Debug]$ jobs
  16. [1]+  Running                 ./mydict.c &
复制代码


假如你们机子xing, 我的不xing的话, 就当是系统ku有问题了...算了...

[ 本帖最后由 yarco1 于 2005-11-16 17:06 编辑 ]

论坛徽章:
0
20 [报告]
发表于 2014-08-10 08:56 |只看该作者
很明显,父进程fork之后让子进程连接,这里面子进程和父进程同时拥有相同的 listenfd和connfd,很显然,子进程不需要listenfd这个套接字,你要在子进程中调用close()函数把listenfd这个套接字释放掉。这样,子进程和父进程就没有套接字关联了
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP