当前位置:   article > 正文

简单Web服务器程序设计与实现_简单 web 服务器的设计与实现

简单 web 服务器的设计与实现

题目描述:      

  1. 实现提供静态网页服务的web服务器

  2. 实现提供cgi动态网页服务的web服务器

  3. web服务器实现多进程服务

一、综合实践目的与要求

Linux程序设计综合实践是我们软件工程专业必须经历的过程,是理论与实践相结合的重要方式,使我们在实践中了解Linux操作系统、在实践中巩固知识。实习是个人综合能力的检验,除了有一定的课本知识外,还需有一定的实践动手能力,操作能力。实习是对我们软件工程专业知识的一种检验,它让我们学到了很多在课堂上根本就学不到的知识,技能开阔视野,又能增长见识,为我们走向工作打下坚实的基础,也是我们走向工作岗位的第一步。为了将所学的专业理论知识运用与实践,在实践中结合理论加深对其认识和总结。将专业与实际接轨,逐步认识,体会,从而更好地将所学的运用到工作中去。接触操作系统,认识linux,学会C语言,学会向老师提问,学会团结协作。通过深入编写程序,了解Linux和操作系统的现状,可加深理解并巩固所学专业知识,进一步提高认识问题、分析问题、解决问题的能力,使一个软件工程专业的学生应在linux综合实践与设计中用所学知识解决现实中的一些问题,对所学专业理论和实践知识进行巩固,同时提高自学、独立开发和协作能力,为走向工作岗位奠定良好的基础。

综合实践的要求是: 一、要求学生在实习过程中认真学习技术知识,积极与指导老师和同学配合;二、在前期,按时到勤,认真学习。积极做好实习日志,能够理解当天的内容。对技术的理论知识要及时实践;三、在后期,积极与同学沟通,认真完成项目要求的内容。在这个过程中要与老师同学多做沟通,通过探讨项目的`解决方案以及进展。

二、综合实践任务

       完成一个简单Web服务器程序设计与实现,要求学习网络套接字编程,HTTP协议、web服务器等知识;设计一个简单Web服务器,提供静态网页浏览服务功能;Web服务器可以配置的参数有主目录、首页问价名、HTTP端口号等项。

  1. 学习socket编程、http协议,实现提供静态网页的web服务器;
  2. 学习cgi知识,实现提供cgi动态网页服务的web服务器;
  3. Web服务器支持多进程服务。

三、总体设计

  1. 学习web服务器的基本原理。
  2. 学习socket网络编程。
  3. 学习http协议,实现提供静态网页的web服务器。
  4. 学习cgi知识,实现动态网页服务的web服务器。
  5. 运用多线程的知识,实现并发的web服务器。

四、详细设计说明

  • 了解web服务器的基本原理。Web服务器其实就是一类网络服务器,可以提供人们上网时向浏览器发出一些请求的一种程序。web服务器同时是一种比较被动的程序,只有你在上网的时候发出指令,这时服务器才会响应。

 

  • 所谓套接字(Socket),就是对网络中不同主机上的应用进程之间进行双向通信的端点的抽象。一个套接字就是网络上进程通信的一端,提供了应用层进程利用网络协议交换数据的机制。从所处的地位来讲,套接字上联应用进程,下联网络协议栈,是应用程序通过网络协议进行通信的接口,是应用程序与网络协议栈进行交互的接口。

 

  • 学习http协议实现,静态web服务器。超文本传输协议(Hyper Text Transfer Protocol,HTTP)是一个简单的请求-响应协议,它通常运行在TCP之上。它指定了客户端可能发送给服务器什么样的消息以及得到什么样的响应。请求和响应消息的头以ASCII形式给出;而消息内容则具有一个类似MIME的格式。这个简单模型是早期Web成功的有功之臣,因为它使开发和部署非常地直截了当。

 

  • 学习cgi的相关知识,实现提供动态网页的web服务器。

 

程度实现:

hanshu.h

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <unistd.h>
  4. #include <sys/types.h>
  5. #include <sys/socket.h>
  6. #include <string.h>
  7. #include <ctype.h>
  8. #include <arpa/inet.h>
  9. #include <errno.h>
  10. #include <sys/stat.h>
  11. #include <unistd.h>
  12. #include <pthread.h>
  13. #define SERVER_PORT 80
  14. static int debug = 1;
  15. int get_line(int sock, char* buf, int size);
  16. void* do_http_request(void* client_sock);
  17. void do_http_response(int client_sock, const char* path);
  18. int headers(int client_sock, FILE* resource);
  19. void cat(int client_sock, FILE* resource);
  20. void not_found(int client_sock);//404
  21. void unimplemented(int client_sock);//500
  22. void bad_request(int client_sock); //400
  23. void inner_error(int client_sock);

http.c

  1. #include "hanshu.h"
  2. void* do_http_request(void* pclient_sock) {
  3. int len = 0;
  4. char buf[256];
  5. char method[64];
  6. char url[256];
  7. char path[256];
  8. int client_sock = *(int*)pclient_sock;
  9. struct stat st;
  10. //读取客户端发送的http请求
  11. len = get_line(client_sock, buf, sizeof(buf));
  12. if (len > 0) {
  13. int i = 0, j = 0;
  14. while (!isspace(buf[j]) && (i < sizeof(method) - 1)) {
  15. method[i] = buf[j];
  16. i++;
  17. j++;
  18. }
  19. method[i] = '\0';
  20. if (debug) printf("request method: %s\n", method);
  21. if (strncasecmp(method, "GET", i) == 0) { //处理get请求
  22. if (debug) printf("method = GET\n");
  23. //获取url
  24. while (isspace(buf[j++]));
  25. i = 0;
  26. while (!isspace(buf[j]) && (i < sizeof(url) - 1)) {
  27. url[i] = buf[j];
  28. i++;
  29. j++;
  30. }
  31. url[i] = '\0';
  32. if (debug) printf("url: %s\n", url);
  33. do {
  34. len = get_line(client_sock, buf, sizeof(buf));
  35. if (debug) printf("read: %s\n", buf);
  36. } while (len > 0);
  37. //处理url中的?
  38. {
  39. char* pos = strchr(url, '?');
  40. if (pos) {
  41. *pos = '\0';
  42. printf("real url: %s\n", url);
  43. }
  44. }
  45. sprintf(path, "./html_docs/%s", url); // html_doc 网页目录
  46. if (debug) printf("path: %s\n", path);
  47. //判断文件是否存在,如果不存在,就响应 404 NOT FOUND.
  48. if (stat(path, &st) == -1) {//文件不存在或是出错
  49. fprintf(stderr, "stat %s failed. reason: %s\n", path, strerror(errno));
  50. not_found(client_sock);
  51. }
  52. else {//文件存在
  53. if (S_ISDIR(st.st_mode)) {
  54. strcat(path, "/index.html");// 如果是ip地址,则添加主页路径
  55. }
  56. do_http_response(client_sock, path);
  57. }
  58. }
  59. else {//非get请求响应客户端 501 Method Not Implemented
  60. fprintf(stderr, "warning! other request [%s]\n", method);
  61. do {
  62. len = get_line(client_sock, buf, sizeof(buf));
  63. if (debug) printf("read: %s\n", buf);
  64. } while (len > 0);
  65. unimplemented(client_sock); //请求未实现
  66. }
  67. }
  68. else {//请求格式有问题,出错处理
  69. bad_request(client_sock); //在响应时再实现
  70. }
  71. close(client_sock);
  72. if (pclient_sock) free(pclient_sock);//释放动态分配的内存
  73. return NULL;
  74. }
  75. void do_http_response(int client_sock, const char* path) {
  76. int ret = 0;
  77. FILE* resource = NULL;
  78. resource = fopen(path, "r");
  79. if (resource == NULL) {
  80. not_found(client_sock);
  81. return;
  82. }
  83. //1.发送http 头部
  84. ret = headers(client_sock, resource);
  85. //2.发送http body .
  86. if (!ret) {
  87. cat(client_sock, resource);
  88. }
  89. fclose(resource);
  90. }

realization.c

  1. #include "hanshu.h"
  2. // 响应文件的头部
  3. int headers(int client_sock, FILE* resource) {
  4. struct stat st;
  5. int fileid = 0;
  6. char tmp[64];
  7. char buf[1024] = { 0 };
  8. strcpy(buf, "HTTP/1.0 200 OK\r\n");
  9. strcat(buf, "Server: Martin Server\r\n");
  10. strcat(buf, "Content-Type: text/html\r\n");
  11. strcat(buf, "Connection: Close\r\n");
  12. fileid = fileno(resource);
  13. if (fstat(fileid, &st) == -1) {
  14. inner_error(client_sock);
  15. return -1;
  16. }
  17. snprintf(tmp, 64, "Content-Length: %ld\r\n\r\n", st.st_size);
  18. strcat(buf, tmp);
  19. if (debug) fprintf(stdout, "header: %s\n", buf);
  20. if (send(client_sock, buf, strlen(buf), 0) < 0) {
  21. fprintf(stderr, "send failed. data: %s, reason: %s\n", buf, strerror(errno));
  22. return -1;
  23. }
  24. return 0;
  25. }
  26. // 读取内容,发送给客户端
  27. void cat(int client_sock, FILE* resource) {
  28. char buf[1024];
  29. fgets(buf, sizeof(buf), resource);
  30. while (!feof(resource)) {
  31. int len = write(client_sock, buf, strlen(buf));
  32. if (len < 0) {//发送body 的过程中出现问题,怎么办?1.重试? 2.
  33. fprintf(stderr, "send body error. reason: %s\n", strerror(errno));
  34. break;
  35. }
  36. if (debug) fprintf(stdout, "%s", buf);
  37. fgets(buf, sizeof(buf), resource);
  38. }
  39. }
  40. //返回值: -1 表示读取出错, 等于0表示读到一个空行, 大于0 表示成功读取一行
  41. int get_line(int sock, char* buf, int size) {
  42. int count = 0;
  43. char ch = '\0';
  44. int len = 0;
  45. while ((count < size - 1) && ch != '\n') {
  46. len = read(sock, &ch, 1);
  47. if (len == 1) {
  48. if (ch == '\r') {
  49. continue;
  50. }
  51. else if (ch == '\n') {
  52. break;
  53. }
  54. //处理一般的字符
  55. buf[count] = ch;
  56. count++;
  57. }
  58. else if (len == -1) {//读取出错
  59. perror("read failed");
  60. count = -1;
  61. break;
  62. }
  63. else {// read 返回0,客户端关闭sock 连接.
  64. fprintf(stderr, "client close.\n");
  65. count = -1;
  66. break;
  67. }
  68. }
  69. if (count >= 0) buf[count] = '\0';
  70. return count;
  71. }
  72. void not_found(int client_sock) {
  73. const char* reply = "HTTP/1.0 404 NOT FOUND\r\n\
  74. Content-Type: text/html\r\n\
  75. \r\n\
  76. <HTML lang=\"zh-CN\">\r\n\
  77. <meta content=\"text/html; charset=utf-8\" http-equiv=\"Content-Type\">\r\n\
  78. <HEAD>\r\n\
  79. <TITLE>NOT FOUND</TITLE>\r\n\
  80. </HEAD>\r\n\
  81. <BODY>\r\n\
  82. <P>文件不存在!\r\n\
  83. <P>The server could not fulfill your request because the resource specified is unavailable or nonexistent.\r\n\
  84. </BODY>\r\n\
  85. </HTML>";
  86. int len = write(client_sock, reply, strlen(reply));
  87. if (debug) fprintf(stdout, reply);
  88. if (len <= 0) {
  89. fprintf(stderr, "send reply failed. reason: %s\n", strerror(errno));
  90. }
  91. }
  92. void unimplemented(int client_sock) {
  93. const char* reply = "HTTP/1.0 501 Method Not Implemented\r\n\
  94. Content-Type: text/html\r\n\
  95. \r\n\
  96. <HTML>\r\n\
  97. <HEAD>\r\n\
  98. <TITLE>Method Not Implemented</TITLE>\r\n\
  99. </HEAD>\r\n\
  100. <BODY>\r\n\
  101. <P>HTTP request method not supported.\r\n\
  102. </BODY>\r\n\
  103. </HTML>";
  104. int len = write(client_sock, reply, strlen(reply));
  105. if (debug) fprintf(stdout, reply);
  106. if (len <= 0) {
  107. fprintf(stderr, "send reply failed. reason: %s\n", strerror(errno));
  108. }
  109. }
  110. void bad_request(int client_sock) {
  111. const char* reply = "HTTP/1.0 400 BAD REQUEST\r\n\
  112. Content-Type: text/html\r\n\
  113. \r\n\
  114. <HTML>\r\n\
  115. <HEAD>\r\n\
  116. <TITLE>BAD REQUEST</TITLE>\r\n\
  117. </HEAD>\r\n\
  118. <BODY>\r\n\
  119. <P>Your browser sent a bad request!\r\n\
  120. </BODY>\r\n\
  121. </HTML>";
  122. int len = write(client_sock, reply, strlen(reply));
  123. if (len <= 0) {
  124. fprintf(stderr, "send reply failed. reason: %s\n", strerror(errno));
  125. }
  126. }
  127. void inner_error(int client_sock) {
  128. const char* reply = "HTTP/1.0 500 Internal Sever Error\r\n\
  129. Content-Type: text/html\r\n\
  130. \r\n\
  131. <HTML lang=\"zh-CN\">\r\n\
  132. <meta content=\"text/html; charset=utf-8\" http-equiv=\"Content-Type\">\r\n\
  133. <HEAD>\r\n\
  134. <TITLE>Inner Error</TITLE>\r\n\
  135. </HEAD>\r\n\
  136. <BODY>\r\n\
  137. <P>服务器内部出错.\r\n\
  138. </BODY>\r\n\
  139. </HTML>";
  140. int len = write(client_sock, reply, strlen(reply));
  141. if (debug) fprintf(stdout, reply);
  142. if (len <= 0) {
  143. fprintf(stderr, "send reply failed. reason: %s\n", strerror(errno));
  144. }
  145. }

Web_Server.c

  1. #include "hanshu.h"
  2. int main(void) {
  3. int sock;
  4. struct sockaddr_in server_addr;
  5. sock = socket(AF_INET, SOCK_STREAM, 0);
  6. bzero(&server_addr, sizeof(server_addr));
  7. server_addr.sin_family = AF_INET;//IPV4
  8. server_addr.sin_addr.s_addr = htonl(INADDR_ANY);//监听本地所有IP地址
  9. server_addr.sin_port = htons(SERVER_PORT);//绑定端口号
  10. bind(sock, (struct sockaddr*)&server_addr, sizeof(server_addr));
  11. listen(sock, 128);
  12. printf("等待客户端的连接\n");
  13. int done = 1;
  14. while (done) {
  15. struct sockaddr_in client;
  16. int client_sock, len, i;
  17. char client_ip[64];
  18. char buf[256];
  19. pthread_t id;
  20. int* pclient_sock = NULL;
  21. socklen_t client_addr_len;
  22. client_addr_len = sizeof(client);
  23. client_sock = accept(sock, (struct sockaddr*)&client, &client_addr_len);
  24. //打印客户端IP地址和端口号
  25. printf("client ip: %s\t port : %d\n",inet_ntop(AF_INET, &client.sin_addr.s_addr, client_ip, sizeof(client_ip)),ntohs(client.sin_port));
  26. //启动线程处理http请求
  27. pclient_sock = (int*)malloc(sizeof(int));
  28. *pclient_sock = client_sock;
  29. pthread_create(&id, NULL, do_http_request, (void*)pclient_sock);
  30. }
  31. close(sock);
  32. return 0;
  33. }

结果演示

 

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/算法编织者/article/detail/61669
推荐阅读
相关标签
  

闽ICP备14008679号