-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwebclient1.c
170 lines (136 loc) · 4.08 KB
/
webclient1.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
#include <stdio.h>
#include <netinet/in.h>
#include <sys/socket.h>
#include <arpa/inet.h>
#include <string.h>
#include <unistd.h>
#include <netdb.h>
#include <sys/types.h>
#include <errno.h>
#include <stdlib.h>
#define BUFSIZE 1000
#include <stddef.h>
char *query(char *host, char *resource){
char *query_str ="GET /%s HTTP/1.1\r\nHost: %s\r\nIam: oate1\r\n\r\n";
char *q = malloc(snprintf(NULL, 0, query_str, resource, host) + 1);
sprintf(q, query_str, resource, host);
return q;
}
int connecting(char *host, char *service){
int sockfd;
struct addrinfo hints, *res, *ressave;
char address[46];
bzero(&hints, sizeof(hints));
hints.ai_family = AF_UNSPEC;
hints.ai_socktype = SOCK_STREAM;
if (getaddrinfo(host, service, &hints, &res) != 0){
perror("Error obtaining address\n");
exit(1);
}
ressave = res;
do {
if ((sockfd=(socket(res->ai_family, res->ai_socktype, res->ai_protocol))) < 0){
perror("Socket error");
continue;
}
if ((connect(sockfd, res->ai_addr, res->ai_addrlen)) == 0){
struct sockaddr_in *s = (struct sockaddr_in *) res->ai_addr;
inet_ntop(res->ai_family, &(s->sin_addr), address, sizeof(address));
/* printf("The address used for connection: %s\n", address);*/
break;
}
close(sockfd);
} while ((res=res->ai_next) != NULL);
if (res == NULL){
fprintf(stderr, "error to create any socket\n");
}
freeaddrinfo(ressave);
return(sockfd);
}
int main(int argc, char **argv){
int sockfd, nbytes, total=0, headers_length=0, content_length=0, bytes;
int i, written_content_length;
char buff[BUFSIZE], buff_copy[BUFSIZE];
FILE *file;
char *q;
char *home = getenv("HOME");
char *double_newline=0;
int partial_content_size;
if (argc != 4){
fprintf(stderr, "usage: a.out IP_address/hostname port/service filename\n");
return 1;
}
sockfd = connecting (argv[1], argv[2]);
/*forming query to send to HTTP server*/
q = query(argv[1], argv[3]);
if (sockfd < 0){
perror("Error creating socket\n");
return 1;
}
/*send request to server*/
while ((nbytes=write(sockfd, q, strlen(q))) > 0){
total += nbytes;
if (total == strlen(q)){
break;
}
}
if (nbytes < 0){
perror("Send error. Possibly the port or hostname are wrong.\n");
return 1;
}
bzero(buff, BUFSIZE);
/*defining filepath and filename where the fetched data will be stored*/
strcat(home, "/");
strcat(home, argv[3]);
/* printf ("path = %s\n", home);*/
total = 0;
while ((bytes=read(sockfd, buff, BUFSIZE))>0){
total += bytes;
/*deep copy of buffer, because strtok modifies it*/
for (i=0; i<BUFSIZE; i++){
buff_copy[i] = buff[i];
}
/*checking if response contains 404 code and if the buffer is still processing headers, i.e. \r\n\r\n is not reached yet*/
if (strstr(buff_copy, "404 Not Found") && double_newline == 0){
printf("File NOT FOUND\n");
break;
}
printf("Bytes received: %d\n", bytes);
/*calculating the response headers size*/
if (double_newline == 0){
double_newline = strstr(buff_copy, "\r\n\r\n");
if (double_newline){
headers_length = (double_newline - buff_copy) + 4;
printf("headers length=%d\n", headers_length);
}
}
/*identifying content length*/
if ((strtok(buff_copy, "Content-Length:") != NULL) && (content_length == 0)){
strtok(NULL, " ");
content_length = strtol(strtok(NULL, "\r\n"), NULL, 10);
/* printf("Content length: %d\n", content_length);*/
}
else if (content_length == 0) {
continue;
}
partial_content_size = bytes - headers_length;
printf("How much content is stored in the buff: %d\n", partial_content_size);
/*w+ means file will be overwritten if it exists*/
file = fopen(home, "w+");
printf("Length of data: %d\n", content_length+headers_length);
written_content_length = fwrite(buff + headers_length, 1, partial_content_size, file);
if (written_content_length != partial_content_size){
fprintf(stderr, "Error writing to file\n");
}
if (total == (content_length + headers_length)){
fclose(file);
printf("received:%d\n", total);
break;
}
}
if (bytes < 0){
perror("Receive error\n");
return 1;
}
return 0;
}