1. /* J. David's webserver */
  2. /* This is a simple webserver.
  3. * Created November 1999 by J. David Blackstone.
  4. * CSE 4344 (Network concepts), Prof. Zeigler
  5. * University of Texas at Arlington
  6. */
  7. /* This program compiles for Sparc Solaris 2.6.
  8. * To compile for Linux:
  9. * 1) Comment out the #include <pthread.h> line.
  10. * 2) Comment out the line that defines the variable newthread.
  11. * 3) Comment out the two lines that run pthread_create().
  12. * 4) Uncomment the line that runs accept_request().
  13. * 5) Remove -lsocket from the Makefile.
  14. */
  15. #include <stdio.h>
  16. #include <sys/socket.h>
  17. #include <sys/types.h>
  18. #include <netinet/in.h>
  19. #include <arpa/inet.h>
  20. #include <unistd.h>
  21. #include <ctype.h>
  22. #include <strings.h>
  23. #include <string.h>
  24. #include <sys/stat.h>
  25. #include <pthread.h>
  26. #include <sys/wait.h>
  27. #include <stdlib.h>
  28. #include <stdint.h>
  29.  
  30. #define ISspace(x) isspace((int)(x))
  31.  
  32. #define SERVER_STRING "Server: jdbhttpd/0.1.0\r\n"
  33. #define STDIN 0
  34. #define STDOUT 1
  35. #define STDERR 2
  36.  
  37. void accept_request(void *);
  38. void bad_request(int);
  39. void cat(int, FILE *);
  40. void cannot_execute(int);
  41. void error_die(const char *);
  42. void execute_cgi(int, const char *, const char *, const char *);
  43. int get_line(int, char *, int);
  44. void headers(int, const char *);
  45. void not_found(int);
  46. void serve_file(int, const char *);
  47. int startup(u_short *);
  48. void unimplemented(int);
  49.  
  50. /**********************************************************************/
  51. /* A request has caused a call to accept() on the server port to
  52. * return. Process the request appropriately.
  53. * Parameters: the socket connected to the client */
  54. /**********************************************************************/
  55. void accept_request(void *arg)
  56. {
  57. int client = (intptr_t)arg;
  58. char buf[];
  59. size_t numchars;
  60. char method[];
  61. char url[];
  62. char path[];
  63. size_t i, j;
  64. struct stat st;
  65. int cgi = ; /* becomes true if server decides this is a CGI
  66. * program */
  67. char *query_string = NULL;
  68.  
  69. numchars = get_line(client, buf, sizeof(buf));
  70. i = ; j = ;
  71. while (!ISspace(buf[i]) && (i < sizeof(method) - ))
  72. {
  73. method[i] = buf[i];
  74. i++;
  75. }
  76. j=i;
  77. method[i] = '\0';
  78.  
  79. if (strcasecmp(method, "GET") && strcasecmp(method, "POST"))
  80. {
  81. unimplemented(client);
  82. return;
  83. }
  84.  
  85. if (strcasecmp(method, "POST") == )
  86. cgi = ;
  87.  
  88. i = ;
  89. while (ISspace(buf[j]) && (j < numchars))
  90. j++;
  91. while (!ISspace(buf[j]) && (i < sizeof(url) - ) && (j < numchars))
  92. {
  93. url[i] = buf[j];
  94. i++; j++;
  95. }
  96. url[i] = '\0';
  97.  
  98. if (strcasecmp(method, "GET") == )
  99. {
  100. query_string = url;
  101. while ((*query_string != '?') && (*query_string != '\0'))
  102. query_string++;
  103. if (*query_string == '?')
  104. {
  105. cgi = ;
  106. *query_string = '\0';
  107. query_string++;
  108. }
  109. }
  110.  
  111. sprintf(path, "htdocs%s", url);
  112. if (path[strlen(path) - ] == '/')
  113. strcat(path, "index.html");
  114. if (stat(path, &st) == -) {
  115. while ((numchars > ) && strcmp("\n", buf)) /* read & discard headers */
  116. numchars = get_line(client, buf, sizeof(buf));
  117. not_found(client);
  118. }
  119. else
  120. {
  121. if ((st.st_mode & S_IFMT) == S_IFDIR)
  122. strcat(path, "/index.html");
  123. if ((st.st_mode & S_IXUSR) ||
  124. (st.st_mode & S_IXGRP) ||
  125. (st.st_mode & S_IXOTH) )
  126. cgi = ;
  127. if (!cgi)
  128. serve_file(client, path);
  129. else
  130. execute_cgi(client, path, method, query_string);
  131. }
  132.  
  133. close(client);
  134. }
  135.  
  136. /**********************************************************************/
  137. /* Inform the client that a request it has made has a problem.
  138. * Parameters: client socket */
  139. /**********************************************************************/
  140. void bad_request(int client)
  141. {
  142. char buf[];
  143.  
  144. sprintf(buf, "HTTP/1.0 400 BAD REQUEST\r\n");
  145. send(client, buf, sizeof(buf), );
  146. sprintf(buf, "Content-type: text/html\r\n");
  147. send(client, buf, sizeof(buf), );
  148. sprintf(buf, "\r\n");
  149. send(client, buf, sizeof(buf), );
  150. sprintf(buf, "<P>Your browser sent a bad request, ");
  151. send(client, buf, sizeof(buf), );
  152. sprintf(buf, "such as a POST without a Content-Length.\r\n");
  153. send(client, buf, sizeof(buf), );
  154. }
  155.  
  156. /**********************************************************************/
  157. /* Put the entire contents of a file out on a socket. This function
  158. * is named after the UNIX "cat" command, because it might have been
  159. * easier just to do something like pipe, fork, and exec("cat").
  160. * Parameters: the client socket descriptor
  161. * FILE pointer for the file to cat */
  162. /**********************************************************************/
  163. void cat(int client, FILE *resource)
  164. {
  165. char buf[];
  166.  
  167. fgets(buf, sizeof(buf), resource);
  168. while (!feof(resource))
  169. {
  170. send(client, buf, strlen(buf), );
  171. fgets(buf, sizeof(buf), resource);
  172. }
  173. }
  174.  
  175. /**********************************************************************/
  176. /* Inform the client that a CGI script could not be executed.
  177. * Parameter: the client socket descriptor. */
  178. /**********************************************************************/
  179. void cannot_execute(int client)
  180. {
  181. char buf[];
  182.  
  183. sprintf(buf, "HTTP/1.0 500 Internal Server Error\r\n");
  184. send(client, buf, strlen(buf), );
  185. sprintf(buf, "Content-type: text/html\r\n");
  186. send(client, buf, strlen(buf), );
  187. sprintf(buf, "\r\n");
  188. send(client, buf, strlen(buf), );
  189. sprintf(buf, "<P>Error prohibited CGI execution.\r\n");
  190. send(client, buf, strlen(buf), );
  191. }
  192.  
  193. /**********************************************************************/
  194. /* Print out an error message with perror() (for system errors; based
  195. * on value of errno, which indicates system call errors) and exit the
  196. * program indicating an error. */
  197. /**********************************************************************/
  198. void error_die(const char *sc)
  199. {
  200. perror(sc);
  201. exit();
  202. }
  203.  
  204. /**********************************************************************/
  205. /* Execute a CGI script. Will need to set environment variables as
  206. * appropriate.
  207. * Parameters: client socket descriptor
  208. * path to the CGI script */
  209. /**********************************************************************/
  210. void execute_cgi(int client, const char *path,
  211. const char *method, const char *query_string)
  212. {
  213. char buf[];
  214. int cgi_output[];
  215. int cgi_input[];
  216. pid_t pid;
  217. int status;
  218. int i;
  219. char c;
  220. int numchars = ;
  221. int content_length = -;
  222.  
  223. buf[] = 'A'; buf[] = '\0';
  224. if (strcasecmp(method, "GET") == )
  225. while ((numchars > ) && strcmp("\n", buf)) /* read & discard headers */
  226. numchars = get_line(client, buf, sizeof(buf));
  227. else if (strcasecmp(method, "POST") == ) /*POST*/
  228. {
  229. numchars = get_line(client, buf, sizeof(buf));
  230. while ((numchars > ) && strcmp("\n", buf))
  231. {
  232. buf[] = '\0';
  233. if (strcasecmp(buf, "Content-Length:") == )
  234. content_length = atoi(&(buf[]));
  235. numchars = get_line(client, buf, sizeof(buf));
  236. }
  237. if (content_length == -) {
  238. bad_request(client);
  239. return;
  240. }
  241. }
  242. else/*HEAD or other*/
  243. {
  244. }
  245.  
  246. if (pipe(cgi_output) < ) {
  247. cannot_execute(client);
  248. return;
  249. }
  250. if (pipe(cgi_input) < ) {
  251. cannot_execute(client);
  252. return;
  253. }
  254.  
  255. if ( (pid = fork()) < ) {
  256. cannot_execute(client);
  257. return;
  258. }
  259. sprintf(buf, "HTTP/1.0 200 OK\r\n");
  260. send(client, buf, strlen(buf), );
  261. if (pid == ) /* child: CGI script */
  262. {
  263. char meth_env[];
  264. char query_env[];
  265. char length_env[];
  266.  
  267. dup2(cgi_output[], STDOUT);
  268. dup2(cgi_input[], STDIN);
  269. close(cgi_output[]);
  270. close(cgi_input[]);
  271. sprintf(meth_env, "REQUEST_METHOD=%s", method);
  272. putenv(meth_env);
  273. if (strcasecmp(method, "GET") == ) {
  274. sprintf(query_env, "QUERY_STRING=%s", query_string);
  275. putenv(query_env);
  276. }
  277. else { /* POST */
  278. sprintf(length_env, "CONTENT_LENGTH=%d", content_length);
  279. putenv(length_env);
  280. }
  281. execl(path, NULL);
  282. exit();
  283. } else { /* parent */
  284. close(cgi_output[]);
  285. close(cgi_input[]);
  286. if (strcasecmp(method, "POST") == )
  287. for (i = ; i < content_length; i++) {
  288. recv(client, &c, , );
  289. write(cgi_input[], &c, );
  290. }
  291. while (read(cgi_output[], &c, ) > )
  292. send(client, &c, , );
  293.  
  294. close(cgi_output[]);
  295. close(cgi_input[]);
  296. waitpid(pid, &status, );
  297. }
  298. }
  299.  
  300. /**********************************************************************/
  301. /* Get a line from a socket, whether the line ends in a newline,
  302. * carriage return, or a CRLF combination. Terminates the string read
  303. * with a null character. If no newline indicator is found before the
  304. * end of the buffer, the string is terminated with a null. If any of
  305. * the above three line terminators is read, the last character of the
  306. * string will be a linefeed and the string will be terminated with a
  307. * null character.
  308. * Parameters: the socket descriptor
  309. * the buffer to save the data in
  310. * the size of the buffer
  311. * Returns: the number of bytes stored (excluding null) */
  312. /**********************************************************************/
  313. int get_line(int sock, char *buf, int size)
  314. {
  315. int i = ;
  316. char c = '\0';
  317. int n;
  318.  
  319. while ((i < size - ) && (c != '\n'))
  320. {
  321. n = recv(sock, &c, , );
  322. /* DEBUG printf("%02X\n", c); */
  323. if (n > )
  324. {
  325. if (c == '\r')
  326. {
  327. n = recv(sock, &c, , MSG_PEEK);
  328. /* DEBUG printf("%02X\n", c); */
  329. if ((n > ) && (c == '\n'))
  330. recv(sock, &c, , );
  331. else
  332. c = '\n';
  333. }
  334. buf[i] = c;
  335. i++;
  336. }
  337. else
  338. c = '\n';
  339. }
  340. buf[i] = '\0';
  341.  
  342. return(i);
  343. }
  344.  
  345. /**********************************************************************/
  346. /* Return the informational HTTP headers about a file. */
  347. /* Parameters: the socket to print the headers on
  348. * the name of the file */
  349. /**********************************************************************/
  350. void headers(int client, const char *filename)
  351. {
  352. char buf[];
  353. (void)filename; /* could use filename to determine file type */
  354.  
  355. strcpy(buf, "HTTP/1.0 200 OK\r\n");
  356. send(client, buf, strlen(buf), );
  357. strcpy(buf, SERVER_STRING);
  358. send(client, buf, strlen(buf), );
  359. sprintf(buf, "Content-Type: text/html\r\n");
  360. send(client, buf, strlen(buf), );
  361. strcpy(buf, "\r\n");
  362. send(client, buf, strlen(buf), );
  363. }
  364.  
  365. /**********************************************************************/
  366. /* Give a client a 404 not found status message. */
  367. /**********************************************************************/
  368. void not_found(int client)
  369. {
  370. char buf[];
  371.  
  372. sprintf(buf, "HTTP/1.0 404 NOT FOUND\r\n");
  373. send(client, buf, strlen(buf), );
  374. sprintf(buf, SERVER_STRING);
  375. send(client, buf, strlen(buf), );
  376. sprintf(buf, "Content-Type: text/html\r\n");
  377. send(client, buf, strlen(buf), );
  378. sprintf(buf, "\r\n");
  379. send(client, buf, strlen(buf), );
  380. sprintf(buf, "<HTML><TITLE>Not Found</TITLE>\r\n");
  381. send(client, buf, strlen(buf), );
  382. sprintf(buf, "<BODY><P>The server could not fulfill\r\n");
  383. send(client, buf, strlen(buf), );
  384. sprintf(buf, "your request because the resource specified\r\n");
  385. send(client, buf, strlen(buf), );
  386. sprintf(buf, "is unavailable or nonexistent.\r\n");
  387. send(client, buf, strlen(buf), );
  388. sprintf(buf, "</BODY></HTML>\r\n");
  389. send(client, buf, strlen(buf), );
  390. }
  391.  
  392. /**********************************************************************/
  393. /* Send a regular file to the client. Use headers, and report
  394. * errors to client if they occur.
  395. * Parameters: a pointer to a file structure produced from the socket
  396. * file descriptor
  397. * the name of the file to serve */
  398. /**********************************************************************/
  399. void serve_file(int client, const char *filename)
  400. {
  401. FILE *resource = NULL;
  402. int numchars = ;
  403. char buf[];
  404.  
  405. buf[] = 'A'; buf[] = '\0';
  406. while ((numchars > ) && strcmp("\n", buf)) /* read & discard headers */
  407. numchars = get_line(client, buf, sizeof(buf));
  408.  
  409. resource = fopen(filename, "r");
  410. if (resource == NULL)
  411. not_found(client);
  412. else
  413. {
  414. headers(client, filename);
  415. cat(client, resource);
  416. }
  417. fclose(resource);
  418. }
  419.  
  420. /**********************************************************************/
  421. /* This function starts the process of listening for web connections
  422. * on a specified port. If the port is 0, then dynamically allocate a
  423. * port and modify the original port variable to reflect the actual
  424. * port.
  425. * Parameters: pointer to variable containing the port to connect on
  426. * Returns: the socket */
  427. /**********************************************************************/
  428. int startup(u_short *port)
  429. {
  430. int httpd = ;
  431. int on = ;
  432. struct sockaddr_in name;
  433.  
  434. httpd = socket(PF_INET, SOCK_STREAM, );
  435. if (httpd == -)
  436. error_die("socket");
  437. memset(&name, , sizeof(name));
  438. name.sin_family = AF_INET;
  439. name.sin_port = htons(*port);
  440. name.sin_addr.s_addr = htonl(INADDR_ANY);
  441. if ((setsockopt(httpd, SOL_SOCKET, SO_REUSEADDR, &on, sizeof(on))) < )
  442. {
  443. error_die("setsockopt failed");
  444. }
  445. if (bind(httpd, (struct sockaddr *)&name, sizeof(name)) < )
  446. error_die("bind");
  447. if (*port == ) /* if dynamically allocating a port */
  448. {
  449. socklen_t namelen = sizeof(name);
  450. if (getsockname(httpd, (struct sockaddr *)&name, &namelen) == -)
  451. error_die("getsockname");
  452. *port = ntohs(name.sin_port);
  453. }
  454. if (listen(httpd, ) < )
  455. error_die("listen");
  456. return(httpd);
  457. }
  458.  
  459. /**********************************************************************/
  460. /* Inform the client that the requested web method has not been
  461. * implemented.
  462. * Parameter: the client socket */
  463. /**********************************************************************/
  464. void unimplemented(int client)
  465. {
  466. char buf[];
  467.  
  468. sprintf(buf, "HTTP/1.0 501 Method Not Implemented\r\n");
  469. send(client, buf, strlen(buf), );
  470. sprintf(buf, SERVER_STRING);
  471. send(client, buf, strlen(buf), );
  472. sprintf(buf, "Content-Type: text/html\r\n");
  473. send(client, buf, strlen(buf), );
  474. sprintf(buf, "\r\n");
  475. send(client, buf, strlen(buf), );
  476. sprintf(buf, "<HTML><HEAD><TITLE>Method Not Implemented\r\n");
  477. send(client, buf, strlen(buf), );
  478. sprintf(buf, "</TITLE></HEAD>\r\n");
  479. send(client, buf, strlen(buf), );
  480. sprintf(buf, "<BODY><P>HTTP request method not supported.\r\n");
  481. send(client, buf, strlen(buf), );
  482. sprintf(buf, "</BODY></HTML>\r\n");
  483. send(client, buf, strlen(buf), );
  484. }
  485.  
  486. /**********************************************************************/
  487.  
  488. int main(void)
  489. {
  490. int server_sock = -;
  491. u_short port = ;
  492. int client_sock = -;
  493. struct sockaddr_in client_name;
  494. socklen_t client_name_len = sizeof(client_name);
  495. pthread_t newthread;
  496.  
  497. server_sock = startup(&port);
  498. printf("httpd running on port %d\n", port);
  499.  
  500. while ()
  501. {
  502. client_sock = accept(server_sock,
  503. (struct sockaddr *)&client_name,
  504. &client_name_len);
  505. if (client_sock == -)
  506. error_die("accept");
  507. /* accept_request(&client_sock); */
  508. if (pthread_create(&newthread , NULL, (void *)accept_request, (void *)(intptr_t)client_sock) != )
  509. perror("pthread_create");
  510. }
  511.  
  512. close(server_sock);
  513.  
  514. return();
  515. }

其实就是建立tcp连接,通过对数据包的解析是否有http的头字段来判断是不是http的,wireshark就是这样

下面是一个别人总结的图

这个我自己写了一下但是没实现到cgi那里,贴一个别人用windows实现的地址

https://blog.csdn.net/magictong/article/details/53201038

一个几百行代码实现的http服务器tinyhttpd的更多相关文章

  1. 一个只有99行代码的JS流程框架(二)

    欢迎大家关注腾讯云技术社区-博客园官方主页,我们将持续在博客园为大家推荐技术精品文章哦~ 张镇圳,腾讯Web前端高级工程师,对内部系统前端建设有多年经验,喜欢钻研捣鼓各种前端组件和框架. 导语 前面写 ...

  2. (转)如何基于FFMPEG和SDL写一个少于1000行代码的视频播放器

    原文地址:http://www.dranger.com/ffmpeg/ FFMPEG是一个很好的库,可以用来创建视频应用或者生成特定的工具.FFMPEG几乎为你把所有的繁重工作都做了,比如解码.编码. ...

  3. JELLY技术周刊 Vol.24 -- 技术周刊 &#183; 实现 Recoil 只需百行代码?

    蒲公英 · JELLY技术周刊 Vol.24 理解一个轮子最好的方法就是仿造一个轮子,很多框架都因此应运而生,比如面向 JS 开发者的 AI 工具 Danfo.js:参考 qiankun 的微前端框架 ...

  4. 一个只有99行代码的JS流程框架

    张镇圳,腾讯Web前端高级工程师,对内部系统前端建设有多年经验,喜欢钻研捣鼓各种前端组件和框架. 最近一直在想一个问题,如何能让js代码写起来更语义化和更具有可读性. 上周末的时候突发奇想,当代码在运 ...

  5. 几百行代码实现一个 JSON 解析器

    前言 之前在写 gscript时我就在想有没有利用编译原理实现一个更实际工具?毕竟真写一个语言的难度不低,并且也很难真的应用起来. 一次无意间看到有人提起 JSON 解析器,这类工具充斥着我们的日常开 ...

  6. 继续node爬虫 — 百行代码自制自动AC机器人日解千题攻占HDOJ

    前言 不说话,先猛戳 Ranklist 看我排名. 这是用 node 自动刷题大概半天的 "战绩",本文就来为大家简单讲解下如何用 node 做一个 "自动AC机&quo ...

  7. 几百行代码写个Mybatis,原理搞的透透的!

    作者:小傅哥 博客:https://bugstack.cn 沉淀.分享.成长,让自己和他人都能有所收获! 一.前言 Mybatis 最核心的原理也是它最便于使用的体现,为什么这说? 因为我们在使用 M ...

  8. IOS 作业项目(1) 关灯游戏 (百行代码搞定)

    1,准备工作,既然要开关灯,就需要确定灯的灯的颜色状态 首先想到的是扩展UIColor

  9. Redux百行代码千行文档

    接触Redux不过短短半年,从开始看官方文档的一头雾水,到渐渐已经理解了Redux到底是在做什么,但是绝大数场景下Redux都是配合React一同使用的,因而会引入了React-Redux库,但是正是 ...

随机推荐

  1. Hibernate 集合映射

    Set映射: <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE hibernate-mappi ...

  2. Golang教程:包

    什么是包?为什么使用包? 到目前为止我们见到的 Go 程序都只有一个文件,文件中包含了一个main函数和几个其他函数.在实际中这种将所有代码都放在一个文件里的组织方式是不可行的.这样的组织方式使得代码 ...

  3. ElasticSearch基础入门

    1.query查询表达式 Elasticsearch 提供一个丰富灵活的查询语言叫做 查询表达式 , 查询表达式(Query DSL)是一种非常灵活又富有表现力的 查询语言,它支持构建更加复杂和健壮的 ...

  4. [转]如何在 .Net Framework 4.0 项目上使用 OData?

    本文转自:http://www.cnblogs.com/fiozhao/p/3536469.html 最新的 Microsoft ASP.NET Web API 2.1 OData 5.1.0 已只能 ...

  5. WPF简单的数据库查询

    做一个简单WPF连接数据库的 控件类型和名称:DataGrid:dataGrid          Button1  :Button1              Button:   Button2   ...

  6. Eigen库矩阵运算使用方法

    Eigen库矩阵运算使用方法 Eigen这个类库,存的东西好多的,来看一下主要的几个头文件吧: ——Core 有关矩阵和数组的类,有基本的线性代数(包含 三角形 和 自伴乘积 相关),还有相应对数组的 ...

  7. 文档类型DTD,DOCTYPE和浏览器模式

    出处:http://blog.csdn.net/freshlover/article/details/11616563 浏览器从服务端获取网页后会根据文档的DOCTYPE定义显示网页,如果文档正确定义 ...

  8. shiro权限控制入门

    一:权限控制两种主要方式 粗粒度 URL 级别权限控制和细粒度方法级别权限控制 1.粗粒度 URL 级别权限控制 可以基于 Filter 实现在数据库中存放 用户.权限.访问 URL 对应关系, 当前 ...

  9. IntelliJ IDEA+Mysql connecter/j JDBC驱动连接

    在IntelliJ IDEA中用connecter/j jdbc驱动连接MYSQL 以下是解决过程,待整合...有点懒,有空再改 官方文档:https://www.cnblogs.com/cn-chy ...

  10. 基于bootstrap的内容折叠功能

    加入js及css支持: <link rel="stylesheet" href="css/bootstrap.min.css"/> <scri ...