gpt4 book ai didi

C 套接字范围 header 无效

转载 作者:行者123 更新时间:2023-11-30 14:51:51 28 4
gpt4 key购买 nike

我正在尝试制作一个程序来提供文件供其他人下载。它监听端口并接受任何请求并通过套接字发送文件。我还不担心 NAT。

我遇到的问题是,使用 aria2c(或 wget)下载该文件会出现“无效范围 header 错误”。不过,本地下载(从127.0.0.1下载)效果很好。

知道这可能会导致问题,我通过添加 -x1 标志禁用了 aria2c 上的多线程下载。

我做错了什么?

<小时/>

错误是:

12/23 20:04:07 [ERROR] CUID#8 - Download aborted. URI=http://104.38.127.225:8000
Exception: [AbstractCommand.cc:351] errorCode=8 URI=http://104.38.127.225:8000
-> [HttpResponse.cc:86] errorCode=8 Invalid range header. Request: 98304-187031/187032, Response: 0-187031/187032
<小时/>

对代码的一些解释:

  1. findFilename 只是从文件路径生成文件名
  2. serveFile 打开一个套接字并监听它,向连接到它的任何人发送指定的文件

我的代码:

#include <stdio.h>
#include <stdlib.h>

#include <netdb.h>
#include <netinet/in.h>

#include <string.h>

#include <unistd.h> /* for close() */

/* find file name from path */
/* file name have to be shorter than 512 characters*/
/* remember to deallocate memory */
char *findFilename(char *filepath)
{
size_t pt;
size_t filenamePt = 0;
char ch;
char *filename = (char*) malloc(512);

for (pt = 0; pt < strlen(filepath); pt++)
{
ch = filepath[pt];
filename[filenamePt] = ch;
filenamePt++;

if(ch == '/')
{
bzero(filename, 512);
filenamePt = 0;
}
}

filename[filenamePt + 1] = '\0';

return filename;
}

int serveFile(char* filepath, int port)
{
FILE *file;
char *buffer;
long int fileLength;
size_t bufferSize;

/* get file name */
char* filename = findFilename(filepath);
if (!filename)
{
fprintf(stderr, "file path error\n");
return -1;
}



/* open file */
file = fopen(filepath, "rb");
if (!file)
{
fprintf(stderr, "file open error\n");
return -1;
}

/* get file length */
fseek(file, 0, SEEK_END);
fileLength=ftell(file);
fseek(file, 0, SEEK_SET);
bufferSize = fileLength + 1;

/* allocate memory */
buffer=(char *)malloc(bufferSize);
if (!buffer)
{
fprintf(stderr, "allocate memory error\n");
fclose(file);
return -1;
}

/* read file */
fread(buffer, fileLength, 1, file);
fclose(file);

/* compose header */
char header[1024];

sprintf(header,
"HTTP/1.1 200 OK\n"
"Content-Length: %li\n"
"Accept-Ranges: bytes\n"
"Content-Disposition: attachment; filename=\"%s\"\n"
"\n", fileLength, filename);

/* do not need filename anymore */
free(filename);

/* create socket */
int socketfd = socket(PF_INET, SOCK_STREAM, 0);

/* configure socket */
struct sockaddr_in address;

bzero(&address, sizeof(address));
address.sin_family = AF_INET;
address.sin_port = htons(port); /* host to network short */
address.sin_addr.s_addr = INADDR_ANY;

/* bind & listen */
if(bind(socketfd, (struct sockaddr*) &address, sizeof(address)) != 0)
{
fprintf(stderr, "bind error\n");
return -1;
}

if (listen(socketfd, 16)!=0)
{
fprintf(stderr, "listen error\n");
return -1;
}

/* accept client */
while (1)
{
socklen_t size = sizeof(address);
int clientSocket = accept(socketfd, (struct sockaddr*) &address, &size);

puts("client connected");

if (fork() == 0)
{
write(clientSocket, header, strlen(header));
write(clientSocket, buffer, bufferSize);
exit(0);
}
else
{
close(clientSocket);
}
}

}


int main(int argc, char *argv[])
{
if (argc < 3 || argc > 3)
{
fprintf(stderr, "needs 2 arguments: file path & port\n");
return -1;
}
char *filepath = argv[1];
int port = atoi(argv[2]);

printf("serving %s on port %d\n"
"file name(not path) cannot exceed 512 characters\n"
"keyboard interrupt to kill\n", filepath, port);
serveFile(filepath, port);
}

最佳答案

12/23 20:04:07 [ERROR] CUID#8 - Download aborted. URI=http://104.38.127.225:8000
Exception: [AbstractCommand.cc:351] errorCode=8 URI=http://104.38.127.225:8000
-> [HttpResponse.cc:86] errorCode=8 Invalid range header. Request: 98304-187031/187032, Response: 0-187031/187032

您附加的错误确实说明了一切。

您的代码假设向服务器发出的每个请求都是请求整个文件的请求。

出于许多充分的原因,情况并非总是如此(请参阅编辑)。

Range 请求 ( using the Range header ) 允许客户端请求文件的一部分,这样即使在网络故障后也可以将下载分成多个 block 并恢复下载。

但是,无论提出什么请求,您的代码也会发送整个文件。

此外,您的代码正在发送 Accept-Ranges header ,表明 Range 请求将受到尊重(即使没有)。

在这种情况下,客户端提示您的代码,表明它请求了一个 block ,而您的代码发送了整个内容。

编辑

正如@RemyLebeau 所指出的,the Range function is optional, though widely used .

这就是为什么您有时只会收到错误...

aria2c 似乎在一定程度上需要范围功能,否则它将无法用作下载管理器(管理下载是 Range 功能的目的毕竟)。

其他下载工具不需要(或利用)此功能。

关于C 套接字范围 header 无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47957351/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com