X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Ffile_ops.c;fp=citadel%2Ffile_ops.c;h=75670266b73d9a5aec9382d4ab9f18de5840b43c;hb=21e82cbfcd63fa4e6dda53ea8a55810565afa929;hp=ba4c2c3a9c533817a3843ea38e110ec3dae74656;hpb=fe0848e37f43c8857e90ad4235f34d06af5451ae;p=citadel.git diff --git a/citadel/file_ops.c b/citadel/file_ops.c index ba4c2c3a9..75670266b 100644 --- a/citadel/file_ops.c +++ b/citadel/file_ops.c @@ -588,10 +588,15 @@ void cmd_read(char *cmdbuf) long start_pos; size_t bytes; char buf[SIZ]; + int rc; /* The client will transmit its requested offset and byte count */ start_pos = extract_long(cmdbuf, 0); bytes = extract_int(cmdbuf, 1); + if ((start_pos < 0) || (bytes <= 0)) { + cprintf("%d you have to specify a value > 0.\n", ERROR + ILLEGAL_VALUE); + return; + } if (CC->download_fp == NULL) { cprintf("%d You don't have a download file open.\n", @@ -604,7 +609,11 @@ void cmd_read(char *cmdbuf) bytes = sizeof(buf); } - fseek(CC->download_fp, start_pos, 0); + rc = fseek(CC->download_fp, start_pos, 0); + if (rc != start_pos) { + cprintf("%d your file is smaller then %ld.\n", ERROR + ILLEGAL_VALUE, start_pos); + return; + } bytes = fread(buf, 1, bytes, CC->download_fp); if (bytes > 0) { /* Tell the client the actual byte count and transmit it */