APUE16章的运行示例16-14

时间:2024-10-16 18:05:03

参考文章:http://blog.****.net/andyxie407/article/details/1672325

今天在运行在APUE第16章的16-14(客户端)和16-15(服务端)遇到了不少问题,搞了半天,运行方法多谢andyxie407的文章给了很好地参考(本来就一样,不叫参考),后面还是运行不出结果,结果找到了两个程序抄错了的地方(原谅我,有时候,看一眼大概实现就把代码敲上去了),写都写到这了,还是把我的痛苦运行结果展示一番,代码如下:

  1. //16-14.c 即客户端
  2. #include "apue.h"
  3. #include <netdb.h>
  4. #include <errno.h>
  5. #include <sys/socket.h>
  6. #define MAXADDRLEN 256
  7. #define BUFLEN 128
  8. #define MAXSLLEP 128
  9. int connect_retry(int sockfd, struct sockaddr *addr, socklen_t alen)
  10. {
  11. int nsec;
  12. for ( nsec = 1; nsec < MAXSLLEP; nsec <<= 1) {//nsec <<= 1 equal to nsec = nsec << 1 equal to nsec /= 2;
  13. if (connect(sockfd, addr, alen) == 0)
  14. return 0;
  15. if (nsec <= MAXSLLEP/2)
  16. sleep(nsec);
  17. }
  18. return -1;
  19. }
  20. void print_uptime(int sockfd)
  21. {
  22. char    buf[BUFLEN];
  23. int     n;
  24. while ((n = recv(sockfd, buf, BUFLEN, 0)) > 0)
  25. write(STDOUT_FILENO, buf, n);
  26. if (n < 0)
  27. err_sys("recv error");
  28. }
  29. int main(int argc, char *argv[])
  30. {
  31. struct addrinfo *aip, *ailist;
  32. struct addrinfo hint;
  33. int     err, sockfd;
  34. if (argc != 2)
  35. err_quit("Usage: ruptime hostname");
  36. hint.ai_family      = 0;
  37. hint.ai_flags       = 0;//AI_CANONNAME;
  38. hint.ai_socktype    = SOCK_STREAM;
  39. hint.ai_protocol    = 0;
  40. hint.ai_addrlen     = 0;
  41. hint.ai_canonname   = NULL;
  42. hint.ai_addr        = NULL;
  43. hint.ai_next        = NULL;
  44. if ((err = getaddrinfo(argv[1], "ruptime", &hint, &ailist)) != 0)
  45. err_quit("getaddrinfo:%s", gai_strerror(err));
  46. for (aip = ailist; aip != NULL; aip = aip->ai_next) {
  47. if ((sockfd = socket(aip->ai_family, SOCK_STREAM, 0)) < 0) {
  48. err = errno;
  49. }
  50. if (connect_retry(sockfd, aip->ai_addr, aip->ai_addrlen) < 0)
  51. err = errno;
  52. else {
  53. printf("connect to ruptime server successfully !\n");
  54. print_uptime(sockfd);
  55. exit(0);
  56. }
  57. }
  58. fprintf(stderr, "cannot connect to %s:%s\n", argv[1], strerror(err));
  59. exit(1); //err happened
  60. }
  1. //16-15.c即服务端
  2. #include "apue.h"
  3. #include <netdb.h>
  4. #include <syslog.h>
  5. #include <errno.h>
  6. #include <sys/socket.h>
  7. #define BUFLEN  128
  8. #define QLEN    10
  9. #ifndef HOST_NAME_MAX
  10. #define HOST_NAME_MAX 256
  11. #endif
  12. int init_server(int type, struct sockaddr *addr, socklen_t alen, int qlen)
  13. {
  14. int fd, err = 0;
  15. if ((fd = socket(addr->sa_family, type, 0)) < 0)
  16. return -1;
  17. if (bind(fd, addr, alen) < 0) {
  18. err = errno;
  19. goto errout;
  20. }
  21. if (type == SOCK_STREAM || type == SOCK_SEQPACKET) {
  22. if (listen(fd, QLEN) < 0) {
  23. err = errno;
  24. goto errout;
  25. }
  26. }
  27. return fd;      //successful when prog arrive here.
  28. errout:
  29. close(fd);      //exit with failuare
  30. errno = err;
  31. return -1;
  32. }
  33. void serve(int fd)
  34. {
  35. char    buf[BUFLEN];
  36. int     clfd;
  37. FILE    *fp;
  38. for ( ; ; ) {
  39. if ((clfd = accept(fd, NULL, NULL)) < 0) {
  40. syslog(LOG_ERR, "ruptime: accept error:%s", strerror(errno));
  41. exit(1);
  42. }
  43. if ((fp = popen("/usr/bin/uptime", "r")) == NULL) {
  44. sprintf(buf, "error:%s\n", strerror(errno));
  45. send(clfd, buf, strlen(buf), 0);
  46. } else {
  47. while (fgets(buf, BUFLEN, fp) != NULL)
  48. send(clfd, buf, strlen(buf), 0);
  49. pclose(fp);
  50. }
  51. close(clfd); //send end
  52. }
  53. }
  54. int main(int argc, char *argv[])
  55. {
  56. struct addrinfo *ailist, *aip;
  57. struct addrinfo hint;
  58. int     err, sockfd, n;
  59. char    *host;
  60. if (argc != 1)
  61. err_quit("Usage:service");
  62. #ifdef _SC_HOST_NAME_MAX
  63. n = sysconf(_SC_HOST_NAME_MAX);
  64. if (n < 0)
  65. #endif
  66. n = HOST_NAME_MAX;
  67. host = malloc(n);
  68. if (!host)
  69. err_sys("malloc error");
  70. if (gethostname(host, n) < 0)
  71. err_sys("gethostname");
  72. printf("host name is:%s\n", host);
  73. daemonize("ruptimed");
  74. hint.ai_flags       = AI_CANONNAME;
  75. hint.ai_family      = 0;
  76. hint.ai_socktype    = SOCK_STREAM;
  77. hint.ai_protocol    = 0;
  78. hint.ai_addrlen     = 0;
  79. hint.ai_canonname   = NULL;
  80. hint.ai_addr        = NULL;
  81. hint.ai_next        = NULL;
  82. if ((err = getaddrinfo(host, "ruptime", &hint, &ailist)) != 0) {
  83. syslog(LOG_ERR , "ruptime:getaddrinfo error:%s", gai_strerror(err));
  84. exit(1);
  85. }
  86. for (aip = ailist; aip != NULL; aip = aip->ai_next) {
  87. sockfd = init_server(SOCK_STREAM, aip->ai_addr, aip->ai_addrlen, QLEN);
  88. if (sockfd >= 0){
  89. serve(sockfd);
  90. exit(0);
  91. }
  92. }
  93. exit(1);
  94. }

分别编译成可执行文件,然后运行服务端 ./ruptimed,可以通过/var/log/syslog看到发生了错误

Servname not supported for ai_socktype .

解决方法之一:先到/etc/services中添加如下内容

ruptime 4000/tcp

保存离开,但是你要确保4000这个端口没有被其他服务占用,否则改用其他端口。这时先运行

$./ruptimed

这是16-15编译出的名字,可以通过ps -ef 看到刚才的程序已成为后台程序,再运行

$./ruptime ubuntu

前面那个是16-14编译出的名字,后面那个是用户/主机名(前面有篇文章讲到了,但是这里不能用localhost或127.0.0.1

得到结果。

12:06:45 up 21:40,  2 users,  load average: 0.00, 0.01, 0.05

很兴奋有木有!

还有一种方法不用更改/etc/services的方法,是将程序中的服务名改成端口号,然后改些其他内容,详见参考文章!

顺便提醒自己一句:在你不能保证自己程序的正确性时(即便编译通过不能代表没有写错或写漏一些东西),先不要到处找程序之外的任何原因,谨记!