2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-06-03 09:03:57 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 09:20:26 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2005-05-02 10:33:07 -04:00
|
|
|
* Copyright (C) 1998 - 2005, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
|
|
|
* are also available at http://curl.haxx.se/docs/copyright.html.
|
2004-06-03 09:03:57 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* $Id$
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
/*
|
|
|
|
Debug the form generator stand-alone by compiling this source file with:
|
|
|
|
|
2001-08-21 09:18:07 -04:00
|
|
|
gcc -DHAVE_CONFIG_H -I../ -g -D_FORM_DEBUG -o formdata -I../include formdata.c strequal.c
|
|
|
|
|
|
|
|
run the 'formdata' executable the output should end with:
|
|
|
|
All Tests seem to have worked ...
|
|
|
|
and the following parts should be there:
|
|
|
|
|
|
|
|
Content-Disposition: form-data; name="simple_COPYCONTENTS"
|
|
|
|
value for simple COPYCONTENTS
|
|
|
|
|
|
|
|
Content-Disposition: form-data; name="COPYCONTENTS_+_CONTENTTYPE"
|
|
|
|
Content-Type: image/gif
|
|
|
|
value for COPYCONTENTS + CONTENTTYPE
|
|
|
|
|
2001-08-28 04:54:33 -04:00
|
|
|
Content-Disposition: form-data; name="PRNAME_+_NAMELENGTH_+_COPYNAME_+_CONTENTSLENGTH"
|
|
|
|
vlue for PTRNAME + NAMELENGTH + COPYNAME + CONTENTSLENGTH
|
|
|
|
(or you might see P^@RNAME and v^@lue at the start)
|
|
|
|
|
2001-08-21 09:18:07 -04:00
|
|
|
Content-Disposition: form-data; name="simple_PTRCONTENTS"
|
|
|
|
value for simple PTRCONTENTS
|
|
|
|
|
|
|
|
Content-Disposition: form-data; name="PTRCONTENTS_+_CONTENTSLENGTH"
|
|
|
|
vlue for PTRCONTENTS + CONTENTSLENGTH
|
|
|
|
(or you might see v^@lue at the start)
|
|
|
|
|
|
|
|
Content-Disposition: form-data; name="PTRCONTENTS_+_CONTENTSLENGTH_+_CONTENTTYPE"
|
|
|
|
Content-Type: text/plain
|
|
|
|
vlue for PTRCOTNENTS + CONTENTSLENGTH + CONTENTTYPE
|
2001-08-28 04:54:33 -04:00
|
|
|
(or you might see v^@lue at the start)
|
2001-08-21 09:18:07 -04:00
|
|
|
|
|
|
|
Content-Disposition: form-data; name="FILE1_+_CONTENTTYPE"; filename="inet_ntoa_r.h"
|
|
|
|
Content-Type: text/html
|
|
|
|
...
|
|
|
|
|
|
|
|
Content-Disposition: form-data; name="FILE1_+_FILE2"
|
|
|
|
Content-Type: multipart/mixed, boundary=curlz1s0dkticx49MV1KGcYP5cvfSsz
|
2001-08-28 04:54:33 -04:00
|
|
|
...
|
2001-08-21 09:18:07 -04:00
|
|
|
Content-Disposition: attachment; filename="inet_ntoa_r.h"
|
|
|
|
Content-Type: text/plain
|
|
|
|
...
|
|
|
|
Content-Disposition: attachment; filename="Makefile.b32.resp"
|
|
|
|
Content-Type: text/plain
|
2001-08-28 04:54:33 -04:00
|
|
|
...
|
|
|
|
|
|
|
|
Content-Disposition: form-data; name="FILE1_+_FILE2_+_FILE3"
|
|
|
|
Content-Type: multipart/mixed, boundary=curlirkYPmPwu6FrJ1vJ1u1BmtIufh1
|
|
|
|
...
|
|
|
|
Content-Disposition: attachment; filename="inet_ntoa_r.h"
|
|
|
|
Content-Type: text/plain
|
|
|
|
...
|
|
|
|
Content-Disposition: attachment; filename="Makefile.b32.resp"
|
|
|
|
Content-Type: text/plain
|
|
|
|
...
|
|
|
|
Content-Disposition: attachment; filename="inet_ntoa_r.h"
|
|
|
|
Content-Type: text/plain
|
2001-08-21 09:18:07 -04:00
|
|
|
...
|
|
|
|
|
2001-10-03 03:54:42 -04:00
|
|
|
|
|
|
|
Content-Disposition: form-data; name="ARRAY: FILE1_+_FILE2_+_FILE3"
|
|
|
|
Content-Type: multipart/mixed, boundary=curlirkYPmPwu6FrJ1vJ1u1BmtIufh1
|
|
|
|
...
|
|
|
|
Content-Disposition: attachment; filename="inet_ntoa_r.h"
|
|
|
|
Content-Type: text/plain
|
|
|
|
...
|
|
|
|
Content-Disposition: attachment; filename="Makefile.b32.resp"
|
|
|
|
Content-Type: text/plain
|
|
|
|
...
|
|
|
|
Content-Disposition: attachment; filename="inet_ntoa_r.h"
|
|
|
|
Content-Type: text/plain
|
|
|
|
...
|
|
|
|
|
|
|
|
Content-Disposition: form-data; name="FILECONTENT"
|
|
|
|
...
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
*/
|
|
|
|
|
2000-08-24 10:26:33 -04:00
|
|
|
#include "setup.h"
|
2004-06-10 03:46:24 -04:00
|
|
|
#include <curl/curl.h>
|
2000-08-24 10:26:33 -04:00
|
|
|
|
2004-06-14 04:51:43 -04:00
|
|
|
/* Length of the random boundary string. */
|
|
|
|
#define BOUNDARY_LENGTH 40
|
|
|
|
|
2005-11-24 15:38:20 -05:00
|
|
|
#if !defined(CURL_DISABLE_HTTP) || defined(USE_SSLEAY)
|
2002-06-11 07:13:01 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <time.h>
|
2004-11-02 05:12:22 -05:00
|
|
|
#ifdef HAVE_SYS_STAT_H
|
2004-06-14 04:51:43 -04:00
|
|
|
#include <sys/stat.h>
|
2004-11-02 05:12:22 -05:00
|
|
|
#endif
|
2004-10-05 02:55:09 -04:00
|
|
|
#if defined(HAVE_LIBGEN_H) && defined(HAVE_BASENAME)
|
2004-10-01 02:36:11 -04:00
|
|
|
#include <libgen.h>
|
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
#include "formdata.h"
|
2000-05-22 10:12:12 -04:00
|
|
|
#include "strequal.h"
|
2004-05-11 07:29:02 -04:00
|
|
|
#include "memory.h"
|
|
|
|
|
|
|
|
#define _MPRINTF_REPLACE /* use our functions only */
|
|
|
|
#include <curl/mprintf.h>
|
2000-05-22 10:12:12 -04:00
|
|
|
|
2000-10-09 07:12:34 -04:00
|
|
|
/* The last #include file should be: */
|
|
|
|
#include "memdebug.h"
|
|
|
|
|
2005-11-24 15:38:20 -05:00
|
|
|
#endif /* !defined(CURL_DISABLE_HTTP) || defined(USE_SSLEAY) */
|
|
|
|
|
|
|
|
#ifndef CURL_DISABLE_HTTP
|
|
|
|
|
2004-10-08 04:18:08 -04:00
|
|
|
#if defined(HAVE_BASENAME) && defined(NEED_BASENAME_PROTO)
|
|
|
|
/* This system has a basename() but no prototype for it! */
|
|
|
|
char *basename(char *path);
|
|
|
|
#endif
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
/* What kind of Content-Type to use on un-specified files with unrecognized
|
|
|
|
extensions. */
|
2003-11-13 02:43:18 -05:00
|
|
|
#define HTTPPOST_CONTENTTYPE_DEFAULT "application/octet-stream"
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
#define FORM_FILE_SEPARATOR ','
|
|
|
|
#define FORM_TYPE_SEPARATOR ';'
|
|
|
|
|
2001-08-21 09:18:07 -04:00
|
|
|
/***************************************************************************
|
|
|
|
*
|
|
|
|
* AddHttpPost()
|
2004-06-03 09:03:57 -04:00
|
|
|
*
|
2001-08-21 09:18:07 -04:00
|
|
|
* Adds a HttpPost structure to the list, if parent_post is given becomes
|
|
|
|
* a subpost of parent_post instead of a direct list element.
|
|
|
|
*
|
2001-08-28 04:54:33 -04:00
|
|
|
* Returns newly allocated HttpPost on success and NULL if malloc failed.
|
2001-08-21 09:18:07 -04:00
|
|
|
*
|
|
|
|
***************************************************************************/
|
2002-03-11 10:18:59 -05:00
|
|
|
static struct curl_httppost *
|
2004-02-27 08:21:14 -05:00
|
|
|
AddHttpPost(char * name, size_t namelength,
|
|
|
|
char * value, size_t contentslength,
|
|
|
|
char * buffer, size_t bufferlength,
|
2002-03-11 10:18:59 -05:00
|
|
|
char *contenttype,
|
|
|
|
long flags,
|
|
|
|
struct curl_slist* contentHeader,
|
|
|
|
char *showfilename,
|
|
|
|
struct curl_httppost *parent_post,
|
|
|
|
struct curl_httppost **httppost,
|
|
|
|
struct curl_httppost **last_post)
|
2001-08-21 09:18:07 -04:00
|
|
|
{
|
2002-03-11 10:18:59 -05:00
|
|
|
struct curl_httppost *post;
|
2004-05-11 10:48:53 -04:00
|
|
|
post = (struct curl_httppost *)calloc(sizeof(struct curl_httppost), 1);
|
2001-08-21 09:18:07 -04:00
|
|
|
if(post) {
|
|
|
|
post->name = name;
|
2004-02-27 08:21:14 -05:00
|
|
|
post->namelength = (long)(name?(namelength?namelength:strlen(name)):0);
|
2001-08-21 09:18:07 -04:00
|
|
|
post->contents = value;
|
2004-03-03 08:11:28 -05:00
|
|
|
post->contentslength = (long)contentslength;
|
2002-06-12 17:40:59 -04:00
|
|
|
post->buffer = buffer;
|
2004-03-03 08:11:28 -05:00
|
|
|
post->bufferlength = (long)bufferlength;
|
2001-08-28 04:54:33 -04:00
|
|
|
post->contenttype = contenttype;
|
2001-12-14 07:59:16 -05:00
|
|
|
post->contentheader = contentHeader;
|
2002-03-11 10:18:59 -05:00
|
|
|
post->showfilename = showfilename;
|
2001-08-21 09:18:07 -04:00
|
|
|
post->flags = flags;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return NULL;
|
2004-06-03 09:03:57 -04:00
|
|
|
|
2001-08-21 09:18:07 -04:00
|
|
|
if (parent_post) {
|
|
|
|
/* now, point our 'more' to the original 'more' */
|
|
|
|
post->more = parent_post->more;
|
2004-06-03 09:03:57 -04:00
|
|
|
|
2001-08-21 09:18:07 -04:00
|
|
|
/* then move the original 'more' to point to ourselves */
|
2004-06-03 09:03:57 -04:00
|
|
|
parent_post->more = post;
|
2001-08-21 09:18:07 -04:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* make the previous point to this */
|
|
|
|
if(*last_post)
|
|
|
|
(*last_post)->next = post;
|
|
|
|
else
|
|
|
|
(*httppost) = post;
|
2004-06-03 09:03:57 -04:00
|
|
|
|
|
|
|
(*last_post) = post;
|
2001-08-21 09:18:07 -04:00
|
|
|
}
|
|
|
|
return post;
|
|
|
|
}
|
|
|
|
|
2001-08-28 04:54:33 -04:00
|
|
|
/***************************************************************************
|
|
|
|
*
|
|
|
|
* AddFormInfo()
|
2004-06-03 09:03:57 -04:00
|
|
|
*
|
2001-08-28 04:54:33 -04:00
|
|
|
* Adds a FormInfo structure to the list presented by parent_form_info.
|
|
|
|
*
|
|
|
|
* Returns newly allocated FormInfo on success and NULL if malloc failed/
|
|
|
|
* parent_form_info is NULL.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
2001-10-03 03:54:42 -04:00
|
|
|
static FormInfo * AddFormInfo(char *value,
|
|
|
|
char *contenttype,
|
|
|
|
FormInfo *parent_form_info)
|
2001-08-28 04:54:33 -04:00
|
|
|
{
|
|
|
|
FormInfo *form_info;
|
|
|
|
form_info = (FormInfo *)malloc(sizeof(FormInfo));
|
|
|
|
if(form_info) {
|
|
|
|
memset(form_info, 0, sizeof(FormInfo));
|
|
|
|
if (value)
|
|
|
|
form_info->value = value;
|
|
|
|
if (contenttype)
|
|
|
|
form_info->contenttype = contenttype;
|
|
|
|
form_info->flags = HTTPPOST_FILENAME;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return NULL;
|
2004-06-03 09:03:57 -04:00
|
|
|
|
2001-08-28 04:54:33 -04:00
|
|
|
if (parent_form_info) {
|
|
|
|
/* now, point our 'more' to the original 'more' */
|
|
|
|
form_info->more = parent_form_info->more;
|
2004-06-03 09:03:57 -04:00
|
|
|
|
2001-08-28 04:54:33 -04:00
|
|
|
/* then move the original 'more' to point to ourselves */
|
|
|
|
parent_form_info->more = form_info;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return form_info;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
*
|
|
|
|
* ContentTypeForFilename()
|
2004-06-03 09:03:57 -04:00
|
|
|
*
|
2001-08-28 04:54:33 -04:00
|
|
|
* Provides content type for filename if one of the known types (else
|
|
|
|
* (either the prevtype or the default is returned).
|
|
|
|
*
|
|
|
|
* Returns some valid contenttype for filename.
|
|
|
|
*
|
|
|
|
***************************************************************************/
|
2001-10-03 03:54:42 -04:00
|
|
|
static const char * ContentTypeForFilename (const char *filename,
|
2004-10-06 03:50:18 -04:00
|
|
|
const char *prevtype)
|
2001-08-28 04:54:33 -04:00
|
|
|
{
|
|
|
|
const char *contenttype = NULL;
|
|
|
|
unsigned int i;
|
|
|
|
/*
|
|
|
|
* No type was specified, we scan through a few well-known
|
|
|
|
* extensions and pick the first we match!
|
|
|
|
*/
|
|
|
|
struct ContentType {
|
|
|
|
const char *extension;
|
|
|
|
const char *type;
|
|
|
|
};
|
2004-12-14 20:38:25 -05:00
|
|
|
static const struct ContentType ctts[]={
|
2001-08-28 04:54:33 -04:00
|
|
|
{".gif", "image/gif"},
|
|
|
|
{".jpg", "image/jpeg"},
|
|
|
|
{".jpeg", "image/jpeg"},
|
|
|
|
{".txt", "text/plain"},
|
2003-04-15 05:29:39 -04:00
|
|
|
{".html", "text/html"}
|
2001-08-28 04:54:33 -04:00
|
|
|
};
|
2004-06-03 09:03:57 -04:00
|
|
|
|
2001-08-28 04:54:33 -04:00
|
|
|
if(prevtype)
|
|
|
|
/* default to the previously set/used! */
|
|
|
|
contenttype = prevtype;
|
|
|
|
else
|
|
|
|
/* It seems RFC1867 defines no Content-Type to default to
|
|
|
|
text/plain so we don't actually need to set this: */
|
|
|
|
contenttype = HTTPPOST_CONTENTTYPE_DEFAULT;
|
2004-06-03 09:03:57 -04:00
|
|
|
|
2001-08-28 04:54:33 -04:00
|
|
|
for(i=0; i<sizeof(ctts)/sizeof(ctts[0]); i++) {
|
|
|
|
if(strlen(filename) >= strlen(ctts[i].extension)) {
|
|
|
|
if(strequal(filename +
|
2004-10-06 03:50:18 -04:00
|
|
|
strlen(filename) - strlen(ctts[i].extension),
|
|
|
|
ctts[i].extension)) {
|
|
|
|
contenttype = ctts[i].type;
|
|
|
|
break;
|
2004-06-03 09:03:57 -04:00
|
|
|
}
|
2001-08-28 04:54:33 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* we have a contenttype by now */
|
|
|
|
return contenttype;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***************************************************************************
|
|
|
|
*
|
2004-05-11 10:48:53 -04:00
|
|
|
* memdup()
|
2004-06-03 09:03:57 -04:00
|
|
|
*
|
2004-05-11 10:48:53 -04:00
|
|
|
* Copies the 'source' data to a newly allocated buffer buffer (that is
|
|
|
|
* returned). Uses buffer_length if not null, else uses strlen to determine
|
|
|
|
* the length of the buffer to be copied
|
2001-08-28 04:54:33 -04:00
|
|
|
*
|
2004-05-11 10:48:53 -04:00
|
|
|
* Returns the new pointer or NULL on failure.
|
2001-08-28 04:54:33 -04:00
|
|
|
*
|
|
|
|
***************************************************************************/
|
2004-05-11 10:48:53 -04:00
|
|
|
static char *memdup(const char *src, size_t buffer_length)
|
2001-08-28 04:54:33 -04:00
|
|
|
{
|
2004-02-26 08:40:43 -05:00
|
|
|
size_t length;
|
|
|
|
bool add = FALSE;
|
2004-05-11 10:48:53 -04:00
|
|
|
char *buffer;
|
2004-06-03 09:03:57 -04:00
|
|
|
|
2001-08-28 04:54:33 -04:00
|
|
|
if (buffer_length)
|
|
|
|
length = buffer_length;
|
2001-10-03 03:54:42 -04:00
|
|
|
else {
|
2004-05-11 10:48:53 -04:00
|
|
|
length = strlen(src);
|
2004-02-26 08:40:43 -05:00
|
|
|
add = TRUE;
|
2001-10-03 03:54:42 -04:00
|
|
|
}
|
2004-05-11 10:48:53 -04:00
|
|
|
buffer = (char*)malloc(length+add);
|
|
|
|
if (!buffer)
|
|
|
|
return NULL; /* fail */
|
2004-06-03 09:03:57 -04:00
|
|
|
|
2004-05-11 10:48:53 -04:00
|
|
|
memcpy(buffer, src, length);
|
|
|
|
|
2001-10-03 03:54:42 -04:00
|
|
|
/* if length unknown do null termination */
|
|
|
|
if (add)
|
2004-05-11 10:48:53 -04:00
|
|
|
buffer[length] = '\0';
|
|
|
|
|
|
|
|
return buffer;
|
2001-08-28 04:54:33 -04:00
|
|
|
}
|
|
|
|
|
2001-08-21 09:18:07 -04:00
|
|
|
/***************************************************************************
|
|
|
|
*
|
|
|
|
* FormAdd()
|
2004-06-03 09:03:57 -04:00
|
|
|
*
|
2004-05-04 05:31:04 -04:00
|
|
|
* Stores a formpost parameter and builds the appropriate linked list.
|
2001-08-21 09:18:07 -04:00
|
|
|
*
|
|
|
|
* Has two principal functionalities: using files and byte arrays as
|
|
|
|
* post parts. Byte arrays are either copied or just the pointer is stored
|
|
|
|
* (as the user requests) while for files only the filename and not the
|
|
|
|
* content is stored.
|
|
|
|
*
|
|
|
|
* While you may have only one byte array for each name, multiple filenames
|
|
|
|
* are allowed (and because of this feature CURLFORM_END is needed after
|
|
|
|
* using CURLFORM_FILE).
|
|
|
|
*
|
|
|
|
* Examples:
|
|
|
|
*
|
|
|
|
* Simple name/value pair with copied contents:
|
|
|
|
* curl_formadd (&post, &last, CURLFORM_COPYNAME, "name",
|
2001-10-03 03:54:42 -04:00
|
|
|
* CURLFORM_COPYCONTENTS, "value", CURLFORM_END);
|
2001-08-21 09:18:07 -04:00
|
|
|
*
|
|
|
|
* name/value pair where only the content pointer is remembered:
|
|
|
|
* curl_formadd (&post, &last, CURLFORM_COPYNAME, "name",
|
2001-10-03 03:54:42 -04:00
|
|
|
* CURLFORM_PTRCONTENTS, ptr, CURLFORM_CONTENTSLENGTH, 10, CURLFORM_END);
|
2001-08-21 09:18:07 -04:00
|
|
|
* (if CURLFORM_CONTENTSLENGTH is missing strlen () is used)
|
|
|
|
*
|
|
|
|
* storing a filename (CONTENTTYPE is optional!):
|
|
|
|
* curl_formadd (&post, &last, CURLFORM_COPYNAME, "name",
|
|
|
|
* CURLFORM_FILE, "filename1", CURLFORM_CONTENTTYPE, "plain/text",
|
|
|
|
* CURLFORM_END);
|
|
|
|
*
|
|
|
|
* storing multiple filenames:
|
|
|
|
* curl_formadd (&post, &last, CURLFORM_COPYNAME, "name",
|
|
|
|
* CURLFORM_FILE, "filename1", CURLFORM_FILE, "filename2", CURLFORM_END);
|
|
|
|
*
|
2001-10-03 03:54:42 -04:00
|
|
|
* Returns:
|
2002-05-21 03:44:27 -04:00
|
|
|
* CURL_FORMADD_OK on success
|
|
|
|
* CURL_FORMADD_MEMORY if the FormInfo allocation fails
|
|
|
|
* CURL_FORMADD_OPTION_TWICE if one option is given twice for one Form
|
|
|
|
* CURL_FORMADD_NULL if a null pointer was given for a char
|
|
|
|
* CURL_FORMADD_MEMORY if the allocation of a FormInfo struct failed
|
|
|
|
* CURL_FORMADD_UNKNOWN_OPTION if an unknown option was used
|
|
|
|
* CURL_FORMADD_INCOMPLETE if the some FormInfo is not complete (or an error)
|
|
|
|
* CURL_FORMADD_MEMORY if a HttpPost struct cannot be allocated
|
|
|
|
* CURL_FORMADD_MEMORY if some allocation for string copying failed.
|
|
|
|
* CURL_FORMADD_ILLEGAL_ARRAY if an illegal option is used in an array
|
2001-08-21 09:18:07 -04:00
|
|
|
*
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
static
|
2002-05-21 03:44:27 -04:00
|
|
|
CURLFORMcode FormAdd(struct curl_httppost **httppost,
|
|
|
|
struct curl_httppost **last_post,
|
|
|
|
va_list params)
|
2001-08-21 09:18:07 -04:00
|
|
|
{
|
2004-05-12 05:02:23 -04:00
|
|
|
FormInfo *first_form, *current_form, *form = NULL;
|
2002-05-21 03:44:27 -04:00
|
|
|
CURLFORMcode return_value = CURL_FORMADD_OK;
|
2001-08-21 09:18:07 -04:00
|
|
|
const char *prevtype = NULL;
|
2002-03-11 10:18:59 -05:00
|
|
|
struct curl_httppost *post = NULL;
|
2001-10-03 03:54:42 -04:00
|
|
|
CURLformoption option;
|
|
|
|
struct curl_forms *forms = NULL;
|
2002-10-28 14:21:30 -05:00
|
|
|
char *array_value=NULL; /* value read from an array */
|
2001-10-03 03:54:42 -04:00
|
|
|
|
|
|
|
/* This is a state variable, that if TRUE means that we're parsing an
|
|
|
|
array that we got passed to us. If FALSE we're parsing the input
|
|
|
|
va_list arguments. */
|
|
|
|
bool array_state = FALSE;
|
2001-08-21 09:18:07 -04:00
|
|
|
|
2001-10-03 03:54:42 -04:00
|
|
|
/*
|
|
|
|
* We need to allocate the first struct to fill in.
|
|
|
|
*/
|
2004-05-11 10:48:53 -04:00
|
|
|
first_form = (FormInfo *)calloc(sizeof(struct FormInfo), 1);
|
|
|
|
if(!first_form)
|
2002-05-21 03:44:27 -04:00
|
|
|
return CURL_FORMADD_MEMORY;
|
2001-08-21 09:18:07 -04:00
|
|
|
|
2004-05-11 10:48:53 -04:00
|
|
|
current_form = first_form;
|
|
|
|
|
2001-10-03 03:54:42 -04:00
|
|
|
/*
|
2004-05-11 10:48:53 -04:00
|
|
|
* Loop through all the options set. Break if we have an error to report.
|
2001-10-03 03:54:42 -04:00
|
|
|
*/
|
2004-05-11 10:48:53 -04:00
|
|
|
while (return_value == CURL_FORMADD_OK) {
|
2001-10-03 03:54:42 -04:00
|
|
|
|
|
|
|
/* first see if we have more parts of the array param */
|
|
|
|
if ( array_state ) {
|
|
|
|
/* get the upcoming option from the given array */
|
2001-10-03 05:31:16 -04:00
|
|
|
option = forms->option;
|
2002-03-19 02:32:35 -05:00
|
|
|
array_value = (char *)forms->value;
|
2001-10-03 05:31:16 -04:00
|
|
|
|
|
|
|
forms++; /* advance this to next entry */
|
2001-10-03 03:54:42 -04:00
|
|
|
if (CURLFORM_END == option) {
|
|
|
|
/* end of array state */
|
|
|
|
array_state = FALSE;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* This is not array-state, get next option */
|
|
|
|
option = va_arg(params, CURLformoption);
|
|
|
|
if (CURLFORM_END == option)
|
2001-08-21 09:18:07 -04:00
|
|
|
break;
|
2001-10-03 03:54:42 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
switch (option) {
|
|
|
|
case CURLFORM_ARRAY:
|
2002-03-13 07:10:20 -05:00
|
|
|
if(array_state)
|
|
|
|
/* we don't support an array from within an array */
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_ILLEGAL_ARRAY;
|
2002-03-13 07:10:20 -05:00
|
|
|
else {
|
|
|
|
forms = va_arg(params, struct curl_forms *);
|
|
|
|
if (forms)
|
|
|
|
array_state = TRUE;
|
|
|
|
else
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_NULL;
|
2002-03-13 07:10:20 -05:00
|
|
|
}
|
2001-10-03 03:54:42 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set the Name property.
|
|
|
|
*/
|
|
|
|
case CURLFORM_PTRNAME:
|
|
|
|
current_form->flags |= HTTPPOST_PTRNAME; /* fall through */
|
|
|
|
case CURLFORM_COPYNAME:
|
|
|
|
if (current_form->name)
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_OPTION_TWICE;
|
2001-10-03 03:54:42 -04:00
|
|
|
else {
|
2002-03-19 02:32:35 -05:00
|
|
|
char *name = array_state?
|
|
|
|
array_value:va_arg(params, char *);
|
2001-10-03 03:54:42 -04:00
|
|
|
if (name)
|
|
|
|
current_form->name = name; /* store for the moment */
|
2001-08-28 04:54:33 -04:00
|
|
|
else
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_NULL;
|
2001-10-03 03:54:42 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CURLFORM_NAMELENGTH:
|
|
|
|
if (current_form->namelength)
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_OPTION_TWICE;
|
2001-10-03 03:54:42 -04:00
|
|
|
else
|
2002-03-13 07:10:20 -05:00
|
|
|
current_form->namelength =
|
2005-04-26 09:08:49 -04:00
|
|
|
array_state?(long)array_value:(long)va_arg(params, long);
|
2001-10-03 03:54:42 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set the contents property.
|
|
|
|
*/
|
|
|
|
case CURLFORM_PTRCONTENTS:
|
|
|
|
current_form->flags |= HTTPPOST_PTRCONTENTS; /* fall through */
|
|
|
|
case CURLFORM_COPYCONTENTS:
|
|
|
|
if (current_form->value)
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_OPTION_TWICE;
|
2001-10-03 03:54:42 -04:00
|
|
|
else {
|
2002-03-19 02:32:35 -05:00
|
|
|
char *value =
|
|
|
|
array_state?array_value:va_arg(params, char *);
|
2001-10-03 03:54:42 -04:00
|
|
|
if (value)
|
|
|
|
current_form->value = value; /* store for the moment */
|
|
|
|
else
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_NULL;
|
2001-10-03 03:54:42 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CURLFORM_CONTENTSLENGTH:
|
|
|
|
if (current_form->contentslength)
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_OPTION_TWICE;
|
2001-10-03 03:54:42 -04:00
|
|
|
else
|
2002-03-13 07:10:20 -05:00
|
|
|
current_form->contentslength =
|
2002-03-19 02:32:35 -05:00
|
|
|
array_state?(long)array_value:va_arg(params, long);
|
2001-10-03 03:54:42 -04:00
|
|
|
break;
|
|
|
|
|
|
|
|
/* Get contents from a given file name */
|
|
|
|
case CURLFORM_FILECONTENT:
|
|
|
|
if (current_form->flags != 0)
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_OPTION_TWICE;
|
2001-10-03 03:54:42 -04:00
|
|
|
else {
|
2002-03-13 07:10:20 -05:00
|
|
|
char *filename = array_state?
|
|
|
|
array_value:va_arg(params, char *);
|
2001-10-03 03:54:42 -04:00
|
|
|
if (filename) {
|
|
|
|
current_form->value = strdup(filename);
|
2004-05-12 05:02:23 -04:00
|
|
|
if(!current_form->value)
|
|
|
|
return_value = CURL_FORMADD_MEMORY;
|
2004-05-13 10:13:12 -04:00
|
|
|
else {
|
2004-05-12 05:02:23 -04:00
|
|
|
current_form->flags |= HTTPPOST_READFILE;
|
2004-05-13 10:13:12 -04:00
|
|
|
current_form->value_alloc = TRUE;
|
|
|
|
}
|
2001-08-21 09:18:07 -04:00
|
|
|
}
|
2001-08-28 04:54:33 -04:00
|
|
|
else
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_NULL;
|
2001-10-03 03:54:42 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* We upload a file */
|
|
|
|
case CURLFORM_FILE:
|
|
|
|
{
|
2002-03-19 02:32:35 -05:00
|
|
|
char *filename = array_state?array_value:
|
|
|
|
va_arg(params, char *);
|
2002-03-13 07:10:20 -05:00
|
|
|
|
2001-10-03 03:54:42 -04:00
|
|
|
if (current_form->value) {
|
|
|
|
if (current_form->flags & HTTPPOST_FILENAME) {
|
|
|
|
if (filename) {
|
|
|
|
if (!(current_form = AddFormInfo(strdup(filename),
|
|
|
|
NULL, current_form)))
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_MEMORY;
|
2001-10-03 03:54:42 -04:00
|
|
|
}
|
|
|
|
else
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_NULL;
|
2001-08-28 04:54:33 -04:00
|
|
|
}
|
|
|
|
else
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_OPTION_TWICE;
|
2001-08-21 09:18:07 -04:00
|
|
|
}
|
|
|
|
else {
|
2004-05-12 05:02:23 -04:00
|
|
|
if (filename) {
|
2001-10-03 03:54:42 -04:00
|
|
|
current_form->value = strdup(filename);
|
2004-05-12 05:02:23 -04:00
|
|
|
if(!current_form->value)
|
|
|
|
return_value = CURL_FORMADD_MEMORY;
|
|
|
|
else {
|
|
|
|
current_form->flags |= HTTPPOST_FILENAME;
|
|
|
|
current_form->value_alloc = TRUE;
|
|
|
|
}
|
|
|
|
}
|
2001-10-03 03:54:42 -04:00
|
|
|
else
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_NULL;
|
2001-08-21 09:18:07 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2002-06-12 17:40:59 -04:00
|
|
|
|
|
|
|
case CURLFORM_BUFFER:
|
|
|
|
{
|
|
|
|
char *filename = array_state?array_value:
|
|
|
|
va_arg(params, char *);
|
|
|
|
|
|
|
|
if (current_form->value) {
|
|
|
|
if (current_form->flags & HTTPPOST_BUFFER) {
|
|
|
|
if (filename) {
|
|
|
|
if (!(current_form = AddFormInfo(strdup(filename),
|
|
|
|
NULL, current_form)))
|
|
|
|
return_value = CURL_FORMADD_MEMORY;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return_value = CURL_FORMADD_NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return_value = CURL_FORMADD_OPTION_TWICE;
|
|
|
|
}
|
|
|
|
else {
|
2004-05-12 05:02:23 -04:00
|
|
|
if (filename) {
|
2002-06-12 17:40:59 -04:00
|
|
|
current_form->value = strdup(filename);
|
2004-05-12 05:02:23 -04:00
|
|
|
if(!current_form->value)
|
|
|
|
return_value = CURL_FORMADD_MEMORY;
|
|
|
|
}
|
2002-06-12 17:40:59 -04:00
|
|
|
else
|
|
|
|
return_value = CURL_FORMADD_NULL;
|
|
|
|
current_form->flags |= HTTPPOST_BUFFER;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2004-06-03 09:03:57 -04:00
|
|
|
|
2002-06-12 17:40:59 -04:00
|
|
|
case CURLFORM_BUFFERPTR:
|
|
|
|
current_form->flags |= HTTPPOST_PTRBUFFER;
|
|
|
|
if (current_form->buffer)
|
|
|
|
return_value = CURL_FORMADD_OPTION_TWICE;
|
|
|
|
else {
|
|
|
|
char *buffer =
|
|
|
|
array_state?array_value:va_arg(params, char *);
|
|
|
|
if (buffer)
|
|
|
|
current_form->buffer = buffer; /* store for the moment */
|
|
|
|
else
|
|
|
|
return_value = CURL_FORMADD_NULL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case CURLFORM_BUFFERLENGTH:
|
|
|
|
if (current_form->bufferlength)
|
|
|
|
return_value = CURL_FORMADD_OPTION_TWICE;
|
|
|
|
else
|
|
|
|
current_form->bufferlength =
|
|
|
|
array_state?(long)array_value:va_arg(params, long);
|
|
|
|
break;
|
|
|
|
|
2001-10-03 03:54:42 -04:00
|
|
|
case CURLFORM_CONTENTTYPE:
|
|
|
|
{
|
2002-06-12 17:40:59 -04:00
|
|
|
char *contenttype =
|
2002-03-19 02:32:35 -05:00
|
|
|
array_state?array_value:va_arg(params, char *);
|
2001-10-03 03:54:42 -04:00
|
|
|
if (current_form->contenttype) {
|
|
|
|
if (current_form->flags & HTTPPOST_FILENAME) {
|
2001-08-28 04:54:33 -04:00
|
|
|
if (contenttype) {
|
2001-10-03 03:54:42 -04:00
|
|
|
if (!(current_form = AddFormInfo(NULL,
|
|
|
|
strdup(contenttype),
|
|
|
|
current_form)))
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_MEMORY;
|
2001-08-28 04:54:33 -04:00
|
|
|
}
|
2004-10-06 03:50:18 -04:00
|
|
|
else
|
|
|
|
return_value = CURL_FORMADD_NULL;
|
2001-08-28 04:54:33 -04:00
|
|
|
}
|
|
|
|
else
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_OPTION_TWICE;
|
2001-08-28 04:54:33 -04:00
|
|
|
}
|
|
|
|
else {
|
2004-10-06 03:50:18 -04:00
|
|
|
if (contenttype) {
|
|
|
|
current_form->contenttype = strdup(contenttype);
|
2004-05-12 05:02:23 -04:00
|
|
|
if(!current_form->contenttype)
|
|
|
|
return_value = CURL_FORMADD_MEMORY;
|
|
|
|
else
|
|
|
|
current_form->contenttype_alloc = TRUE;
|
|
|
|
}
|
2004-10-06 03:50:18 -04:00
|
|
|
else
|
|
|
|
return_value = CURL_FORMADD_NULL;
|
|
|
|
}
|
2001-08-21 09:18:07 -04:00
|
|
|
break;
|
2001-08-28 04:54:33 -04:00
|
|
|
}
|
2001-12-14 07:59:16 -05:00
|
|
|
case CURLFORM_CONTENTHEADER:
|
|
|
|
{
|
2002-03-19 02:32:35 -05:00
|
|
|
/* this "cast increases required alignment of target type" but
|
|
|
|
we consider it OK anyway */
|
2002-03-13 07:10:20 -05:00
|
|
|
struct curl_slist* list = array_state?
|
|
|
|
(struct curl_slist*)array_value:
|
|
|
|
va_arg(params, struct curl_slist*);
|
2004-06-03 09:03:57 -04:00
|
|
|
|
2001-12-14 07:59:16 -05:00
|
|
|
if( current_form->contentheader )
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_OPTION_TWICE;
|
2001-12-14 07:59:16 -05:00
|
|
|
else
|
|
|
|
current_form->contentheader = list;
|
2004-06-03 09:03:57 -04:00
|
|
|
|
2001-12-14 07:59:16 -05:00
|
|
|
break;
|
|
|
|
}
|
2002-03-11 10:18:59 -05:00
|
|
|
case CURLFORM_FILENAME:
|
|
|
|
{
|
2002-03-13 07:10:20 -05:00
|
|
|
char *filename = array_state?array_value:
|
2002-03-11 10:18:59 -05:00
|
|
|
va_arg(params, char *);
|
|
|
|
if( current_form->showfilename )
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_OPTION_TWICE;
|
2004-05-12 05:02:23 -04:00
|
|
|
else {
|
2002-03-11 10:18:59 -05:00
|
|
|
current_form->showfilename = strdup(filename);
|
2004-05-12 05:02:23 -04:00
|
|
|
if(!current_form->showfilename)
|
|
|
|
return_value = CURL_FORMADD_MEMORY;
|
|
|
|
else
|
|
|
|
current_form->showfilename_alloc = TRUE;
|
|
|
|
}
|
2002-03-11 10:18:59 -05:00
|
|
|
break;
|
|
|
|
}
|
2001-10-03 03:54:42 -04:00
|
|
|
default:
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_UNKNOWN_OPTION;
|
2001-08-28 04:54:33 -04:00
|
|
|
}
|
2001-10-03 03:54:42 -04:00
|
|
|
}
|
|
|
|
|
2002-05-21 03:44:27 -04:00
|
|
|
if(CURL_FORMADD_OK == return_value) {
|
2001-10-03 03:54:42 -04:00
|
|
|
/* go through the list, check for copleteness and if everything is
|
|
|
|
* alright add the HttpPost item otherwise set return_value accordingly */
|
2004-06-03 09:03:57 -04:00
|
|
|
|
2001-10-29 08:21:25 -05:00
|
|
|
post = NULL;
|
|
|
|
for(form = first_form;
|
|
|
|
form != NULL;
|
|
|
|
form = form->more) {
|
|
|
|
if ( ((!form->name || !form->value) && !post) ||
|
2001-10-03 03:54:42 -04:00
|
|
|
( (form->contentslength) &&
|
|
|
|
(form->flags & HTTPPOST_FILENAME) ) ||
|
|
|
|
( (form->flags & HTTPPOST_FILENAME) &&
|
|
|
|
(form->flags & HTTPPOST_PTRCONTENTS) ) ||
|
2002-06-12 17:40:59 -04:00
|
|
|
|
|
|
|
( (!form->buffer) &&
|
|
|
|
(form->flags & HTTPPOST_BUFFER) &&
|
|
|
|
(form->flags & HTTPPOST_PTRBUFFER) ) ||
|
|
|
|
|
2001-10-03 03:54:42 -04:00
|
|
|
( (form->flags & HTTPPOST_READFILE) &&
|
|
|
|
(form->flags & HTTPPOST_PTRCONTENTS) )
|
|
|
|
) {
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_INCOMPLETE;
|
2001-10-03 03:54:42 -04:00
|
|
|
break;
|
2001-08-28 04:54:33 -04:00
|
|
|
}
|
2001-10-03 03:54:42 -04:00
|
|
|
else {
|
2002-06-12 17:40:59 -04:00
|
|
|
if ( ((form->flags & HTTPPOST_FILENAME) ||
|
|
|
|
(form->flags & HTTPPOST_BUFFER)) &&
|
2001-10-03 03:54:42 -04:00
|
|
|
!form->contenttype ) {
|
|
|
|
/* our contenttype is missing */
|
|
|
|
form->contenttype
|
|
|
|
= strdup(ContentTypeForFilename(form->value, prevtype));
|
2004-05-12 05:02:23 -04:00
|
|
|
if(!form->contenttype) {
|
|
|
|
return_value = CURL_FORMADD_MEMORY;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
form->contenttype_alloc = TRUE;
|
2001-10-03 03:54:42 -04:00
|
|
|
}
|
|
|
|
if ( !(form->flags & HTTPPOST_PTRNAME) &&
|
|
|
|
(form == first_form) ) {
|
|
|
|
/* copy name (without strdup; possibly contains null characters) */
|
2004-05-11 10:48:53 -04:00
|
|
|
form->name = memdup(form->name, form->namelength);
|
|
|
|
if (!form->name) {
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_MEMORY;
|
2001-10-03 03:54:42 -04:00
|
|
|
break;
|
|
|
|
}
|
2004-05-11 10:48:53 -04:00
|
|
|
form->name_alloc = TRUE;
|
2001-10-03 03:54:42 -04:00
|
|
|
}
|
|
|
|
if ( !(form->flags & HTTPPOST_FILENAME) &&
|
2004-06-03 09:03:57 -04:00
|
|
|
!(form->flags & HTTPPOST_READFILE) &&
|
2002-06-12 17:40:59 -04:00
|
|
|
!(form->flags & HTTPPOST_PTRCONTENTS) &&
|
|
|
|
!(form->flags & HTTPPOST_PTRBUFFER) ) {
|
2001-10-03 03:54:42 -04:00
|
|
|
/* copy value (without strdup; possibly contains null characters) */
|
2004-05-11 10:48:53 -04:00
|
|
|
form->value = memdup(form->value, form->contentslength);
|
|
|
|
if (!form->value) {
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_MEMORY;
|
2001-10-03 03:54:42 -04:00
|
|
|
break;
|
|
|
|
}
|
2004-05-11 10:48:53 -04:00
|
|
|
form->value_alloc = TRUE;
|
2001-10-03 03:54:42 -04:00
|
|
|
}
|
2001-12-14 07:59:16 -05:00
|
|
|
post = AddHttpPost(form->name, form->namelength,
|
|
|
|
form->value, form->contentslength,
|
2002-06-12 17:40:59 -04:00
|
|
|
form->buffer, form->bufferlength,
|
2001-12-14 07:59:16 -05:00
|
|
|
form->contenttype, form->flags,
|
2002-03-11 10:18:59 -05:00
|
|
|
form->contentheader, form->showfilename,
|
2001-12-14 07:59:16 -05:00
|
|
|
post, httppost,
|
|
|
|
last_post);
|
2004-06-03 09:03:57 -04:00
|
|
|
|
2004-05-11 10:48:53 -04:00
|
|
|
if(!post) {
|
2002-05-21 03:44:27 -04:00
|
|
|
return_value = CURL_FORMADD_MEMORY;
|
2004-05-11 10:48:53 -04:00
|
|
|
break;
|
|
|
|
}
|
2001-12-14 07:59:16 -05:00
|
|
|
|
2001-10-03 03:54:42 -04:00
|
|
|
if (form->contenttype)
|
|
|
|
prevtype = form->contenttype;
|
2001-08-28 04:54:33 -04:00
|
|
|
}
|
|
|
|
}
|
2001-10-03 03:54:42 -04:00
|
|
|
}
|
2001-08-21 09:18:07 -04:00
|
|
|
|
2004-05-12 05:02:23 -04:00
|
|
|
if(return_value) {
|
2004-05-11 10:48:53 -04:00
|
|
|
/* we return on error, free possibly allocated fields */
|
2004-05-12 05:02:23 -04:00
|
|
|
if(!form)
|
|
|
|
form = current_form;
|
|
|
|
if(form) {
|
|
|
|
if(form->name_alloc)
|
|
|
|
free(form->name);
|
|
|
|
if(form->value_alloc)
|
|
|
|
free(form->value);
|
|
|
|
if(form->contenttype_alloc)
|
|
|
|
free(form->contenttype);
|
|
|
|
if(form->showfilename_alloc)
|
|
|
|
free(form->showfilename);
|
|
|
|
}
|
2004-05-11 10:48:53 -04:00
|
|
|
}
|
|
|
|
|
2001-10-03 03:54:42 -04:00
|
|
|
/* always delete the allocated memory before returning */
|
|
|
|
form = first_form;
|
|
|
|
while (form != NULL) {
|
|
|
|
FormInfo *delete_form;
|
2004-06-03 09:03:57 -04:00
|
|
|
|
2001-10-03 03:54:42 -04:00
|
|
|
delete_form = form;
|
|
|
|
form = form->more;
|
|
|
|
free (delete_form);
|
|
|
|
}
|
2001-08-28 04:54:33 -04:00
|
|
|
|
|
|
|
return return_value;
|
2001-08-21 09:18:07 -04:00
|
|
|
}
|
|
|
|
|
2004-04-23 06:37:52 -04:00
|
|
|
/*
|
|
|
|
* curl_formadd() is a public API to add a section to the multipart formpost.
|
|
|
|
*/
|
|
|
|
|
2002-05-21 03:44:27 -04:00
|
|
|
CURLFORMcode curl_formadd(struct curl_httppost **httppost,
|
2004-04-23 06:37:52 -04:00
|
|
|
struct curl_httppost **last_post,
|
|
|
|
...)
|
2001-08-21 09:18:07 -04:00
|
|
|
{
|
|
|
|
va_list arg;
|
2002-05-21 03:44:27 -04:00
|
|
|
CURLFORMcode result;
|
2001-08-21 09:18:07 -04:00
|
|
|
va_start(arg, last_post);
|
|
|
|
result = FormAdd(httppost, last_post, arg);
|
|
|
|
va_end(arg);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2004-04-23 06:37:52 -04:00
|
|
|
/*
|
|
|
|
* AddFormData() adds a chunk of data to the FormData linked list.
|
2004-05-10 03:11:52 -04:00
|
|
|
*
|
|
|
|
* size is incremented by the chunk length, unless it is NULL
|
2004-04-23 06:37:52 -04:00
|
|
|
*/
|
2004-05-10 03:11:52 -04:00
|
|
|
static CURLcode AddFormData(struct FormData **formp,
|
2004-06-14 04:51:43 -04:00
|
|
|
enum formtype type,
|
2004-05-10 03:11:52 -04:00
|
|
|
const void *line,
|
|
|
|
size_t length,
|
2004-06-14 04:51:43 -04:00
|
|
|
curl_off_t *size)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
|
|
|
struct FormData *newform = (struct FormData *)
|
|
|
|
malloc(sizeof(struct FormData));
|
2004-05-10 03:11:52 -04:00
|
|
|
if (!newform)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
1999-12-29 09:20:26 -05:00
|
|
|
newform->next = NULL;
|
|
|
|
|
|
|
|
/* we make it easier for plain strings: */
|
|
|
|
if(!length)
|
|
|
|
length = strlen((char *)line);
|
|
|
|
|
|
|
|
newform->line = (char *)malloc(length+1);
|
2004-05-10 03:11:52 -04:00
|
|
|
if (!newform->line) {
|
|
|
|
free(newform);
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
}
|
2001-11-08 10:06:58 -05:00
|
|
|
memcpy(newform->line, line, length);
|
1999-12-29 09:20:26 -05:00
|
|
|
newform->length = length;
|
2000-06-15 10:33:17 -04:00
|
|
|
newform->line[length]=0; /* zero terminate for easier debugging */
|
2004-06-14 04:51:43 -04:00
|
|
|
newform->type = type;
|
2004-06-03 09:03:57 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
if(*formp) {
|
|
|
|
(*formp)->next = newform;
|
|
|
|
*formp = newform;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
*formp = newform;
|
|
|
|
|
2004-06-14 04:51:43 -04:00
|
|
|
if (size) {
|
|
|
|
if(type == FORM_DATA)
|
|
|
|
*size += length;
|
|
|
|
else {
|
|
|
|
/* Since this is a file to be uploaded here, add the size of the actual
|
|
|
|
file */
|
|
|
|
if(!strequal("-", newform->line)) {
|
2004-12-16 13:09:27 -05:00
|
|
|
struct_stat file;
|
2004-06-14 04:51:43 -04:00
|
|
|
if(!stat(newform->line, &file)) {
|
|
|
|
*size += file.st_size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-05-10 03:11:52 -04:00
|
|
|
return CURLE_OK;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2004-04-23 06:37:52 -04:00
|
|
|
/*
|
|
|
|
* AddFormDataf() adds printf()-style formatted data to the formdata chain.
|
|
|
|
*/
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-05-10 03:11:52 -04:00
|
|
|
static CURLcode AddFormDataf(struct FormData **formp,
|
2004-06-14 04:51:43 -04:00
|
|
|
curl_off_t *size,
|
2004-05-11 07:29:02 -04:00
|
|
|
const char *fmt, ...)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2000-07-25 08:21:22 -04:00
|
|
|
char s[4096];
|
1999-12-29 09:20:26 -05:00
|
|
|
va_list ap;
|
|
|
|
va_start(ap, fmt);
|
2004-06-24 07:54:11 -04:00
|
|
|
vsnprintf(s, sizeof(s), fmt, ap);
|
1999-12-29 09:20:26 -05:00
|
|
|
va_end(ap);
|
|
|
|
|
2004-06-14 04:51:43 -04:00
|
|
|
return AddFormData(formp, FORM_DATA, s, 0, size);
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2004-04-23 06:37:52 -04:00
|
|
|
/*
|
|
|
|
* Curl_formclean() is used from http.c, this cleans a built FormData linked
|
|
|
|
* list
|
2004-06-03 09:03:57 -04:00
|
|
|
*/
|
2001-08-06 08:36:18 -04:00
|
|
|
void Curl_formclean(struct FormData *form)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
|
|
|
struct FormData *next;
|
2001-04-06 01:52:23 -04:00
|
|
|
|
2004-05-12 05:02:23 -04:00
|
|
|
if(!form)
|
|
|
|
return;
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
do {
|
|
|
|
next=form->next; /* the following form line */
|
|
|
|
free(form->line); /* free the line */
|
|
|
|
free(form); /* free the struct */
|
2004-06-03 09:03:57 -04:00
|
|
|
|
2000-11-17 09:06:24 -05:00
|
|
|
} while((form=next)); /* continue */
|
|
|
|
}
|
|
|
|
|
2004-04-23 06:37:52 -04:00
|
|
|
/*
|
|
|
|
* curl_formfree() is an external function to free up a whole form post
|
|
|
|
* chain
|
|
|
|
*/
|
2002-03-11 10:18:59 -05:00
|
|
|
void curl_formfree(struct curl_httppost *form)
|
2000-11-17 09:06:24 -05:00
|
|
|
{
|
2002-03-11 10:18:59 -05:00
|
|
|
struct curl_httppost *next;
|
2001-04-06 01:52:23 -04:00
|
|
|
|
|
|
|
if(!form)
|
|
|
|
/* no form to free, just get out of this */
|
|
|
|
return;
|
|
|
|
|
2000-11-17 09:06:24 -05:00
|
|
|
do {
|
|
|
|
next=form->next; /* the following form line */
|
|
|
|
|
|
|
|
/* recurse to sub-contents */
|
|
|
|
if(form->more)
|
|
|
|
curl_formfree(form->more);
|
|
|
|
|
2001-08-28 04:54:33 -04:00
|
|
|
if( !(form->flags & HTTPPOST_PTRNAME) && form->name)
|
2000-11-17 09:06:24 -05:00
|
|
|
free(form->name); /* free the name */
|
2001-08-21 09:18:07 -04:00
|
|
|
if( !(form->flags & HTTPPOST_PTRCONTENTS) && form->contents)
|
2000-11-17 09:06:24 -05:00
|
|
|
free(form->contents); /* free the contents */
|
|
|
|
if(form->contenttype)
|
|
|
|
free(form->contenttype); /* free the content type */
|
2002-03-11 10:18:59 -05:00
|
|
|
if(form->showfilename)
|
|
|
|
free(form->showfilename); /* free the faked file name */
|
2000-11-17 09:06:24 -05:00
|
|
|
free(form); /* free the struct */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2000-05-22 10:12:12 -04:00
|
|
|
} while((form=next)); /* continue */
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2004-10-01 02:36:11 -04:00
|
|
|
#ifndef HAVE_BASENAME
|
|
|
|
/*
|
|
|
|
(Quote from The Open Group Base Specifications Issue 6 IEEE Std 1003.1, 2004
|
|
|
|
Edition)
|
|
|
|
|
|
|
|
The basename() function shall take the pathname pointed to by path and
|
|
|
|
return a pointer to the final component of the pathname, deleting any
|
|
|
|
trailing '/' characters.
|
|
|
|
|
|
|
|
If the string pointed to by path consists entirely of the '/' character,
|
|
|
|
basename() shall return a pointer to the string "/". If the string pointed
|
|
|
|
to by path is exactly "//", it is implementation-defined whether '/' or "//"
|
|
|
|
is returned.
|
|
|
|
|
|
|
|
If path is a null pointer or points to an empty string, basename() shall
|
|
|
|
return a pointer to the string ".".
|
|
|
|
|
|
|
|
The basename() function may modify the string pointed to by path, and may
|
|
|
|
return a pointer to static storage that may then be overwritten by a
|
|
|
|
subsequent call to basename().
|
|
|
|
|
|
|
|
The basename() function need not be reentrant. A function that is not
|
|
|
|
required to be reentrant is not required to be thread-safe.
|
|
|
|
|
|
|
|
*/
|
2004-10-05 02:49:09 -04:00
|
|
|
static char *basename(char *path)
|
2004-10-01 02:36:11 -04:00
|
|
|
{
|
|
|
|
/* Ignore all the details above for now and make a quick and simple
|
|
|
|
implementaion here */
|
|
|
|
char *s1;
|
|
|
|
char *s2;
|
|
|
|
|
|
|
|
s1=strrchr(path, '/');
|
|
|
|
s2=strrchr(path, '\\');
|
|
|
|
|
|
|
|
if(s1 && s2) {
|
|
|
|
path = (s1 > s2? s1 : s2)+1;
|
|
|
|
}
|
2004-10-01 07:20:38 -04:00
|
|
|
else if(s1)
|
|
|
|
path = s1 + 1;
|
|
|
|
else if(s2)
|
2004-10-01 07:27:14 -04:00
|
|
|
path = s2 + 1;
|
2004-10-01 02:36:11 -04:00
|
|
|
|
|
|
|
return path;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static char *strippath(char *fullfile)
|
|
|
|
{
|
|
|
|
char *filename;
|
|
|
|
char *base;
|
|
|
|
filename = strdup(fullfile); /* duplicate since basename() may ruin the
|
|
|
|
buffer it works on */
|
|
|
|
if(!filename)
|
|
|
|
return NULL;
|
|
|
|
base = strdup(basename(filename));
|
|
|
|
|
|
|
|
free(filename); /* free temporary buffer */
|
|
|
|
|
|
|
|
return base; /* returns an allocated string! */
|
|
|
|
}
|
|
|
|
|
2004-04-23 06:37:52 -04:00
|
|
|
/*
|
|
|
|
* Curl_getFormData() converts a linked list of "meta data" into a complete
|
|
|
|
* (possibly huge) multipart formdata. The input list is in 'post', while the
|
|
|
|
* output resulting linked lists gets stored in '*finalform'. *sizep will get
|
|
|
|
* the total size of the whole POST.
|
|
|
|
*/
|
|
|
|
|
2002-04-15 07:19:03 -04:00
|
|
|
CURLcode Curl_getFormData(struct FormData **finalform,
|
|
|
|
struct curl_httppost *post,
|
2004-03-12 09:22:16 -05:00
|
|
|
curl_off_t *sizep)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
|
|
|
struct FormData *form = NULL;
|
|
|
|
struct FormData *firstform;
|
2002-03-11 10:18:59 -05:00
|
|
|
struct curl_httppost *file;
|
2002-04-15 07:19:03 -04:00
|
|
|
CURLcode result = CURLE_OK;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-06-14 04:51:43 -04:00
|
|
|
curl_off_t size=0; /* support potentially ENORMOUS formposts */
|
1999-12-29 09:20:26 -05:00
|
|
|
char *boundary;
|
|
|
|
char *fileboundary=NULL;
|
2001-12-14 07:59:16 -05:00
|
|
|
struct curl_slist* curList;
|
|
|
|
|
2002-04-15 07:19:03 -04:00
|
|
|
*finalform=NULL; /* default form is empty */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
if(!post)
|
2002-04-15 07:19:03 -04:00
|
|
|
return result; /* no input => no output! */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2001-01-05 05:11:41 -05:00
|
|
|
boundary = Curl_FormBoundary();
|
2004-05-12 05:02:23 -04:00
|
|
|
if(!boundary)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2004-06-03 09:03:57 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
/* Make the first line of the output */
|
2004-05-11 07:29:02 -04:00
|
|
|
result = AddFormDataf(&form, NULL,
|
|
|
|
"Content-Type: multipart/form-data;"
|
|
|
|
" boundary=%s\r\n",
|
|
|
|
boundary);
|
|
|
|
if (result) {
|
2004-05-10 03:11:52 -04:00
|
|
|
free(boundary);
|
|
|
|
return result;
|
|
|
|
}
|
2004-05-11 07:29:02 -04:00
|
|
|
/* we DO NOT include that line in the total size of the POST, since it'll be
|
|
|
|
part of the header! */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
firstform = form;
|
2004-06-03 09:03:57 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
do {
|
|
|
|
|
2004-05-10 03:11:52 -04:00
|
|
|
if(size) {
|
|
|
|
result = AddFormDataf(&form, &size, "\r\n");
|
2004-05-11 07:29:02 -04:00
|
|
|
if (result)
|
2004-05-10 03:11:52 -04:00
|
|
|
break;
|
|
|
|
}
|
2002-02-06 10:48:53 -05:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
/* boundary */
|
2004-05-10 03:11:52 -04:00
|
|
|
result = AddFormDataf(&form, &size, "--%s\r\n", boundary);
|
2004-05-11 07:29:02 -04:00
|
|
|
if (result)
|
2004-05-10 03:11:52 -04:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-06-14 04:51:43 -04:00
|
|
|
result = AddFormDataf(&form, &size,
|
|
|
|
"Content-Disposition: form-data; name=\"");
|
2004-05-11 07:29:02 -04:00
|
|
|
if (result)
|
2004-05-10 03:11:52 -04:00
|
|
|
break;
|
2001-08-28 04:54:33 -04:00
|
|
|
|
2004-06-14 04:51:43 -04:00
|
|
|
result = AddFormData(&form, FORM_DATA, post->name, post->namelength,
|
|
|
|
&size);
|
2004-05-11 07:29:02 -04:00
|
|
|
if (result)
|
2004-05-10 03:11:52 -04:00
|
|
|
break;
|
2001-08-28 04:54:33 -04:00
|
|
|
|
2004-06-14 04:51:43 -04:00
|
|
|
result = AddFormDataf(&form, &size, "\"");
|
2004-05-11 07:29:02 -04:00
|
|
|
if (result)
|
2004-05-10 03:11:52 -04:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
if(post->more) {
|
|
|
|
/* If used, this is a link to more file names, we must then do
|
|
|
|
the magic to include several files with the same field name */
|
|
|
|
|
2001-01-05 05:11:41 -05:00
|
|
|
fileboundary = Curl_FormBoundary();
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-05-10 03:11:52 -04:00
|
|
|
result = AddFormDataf(&form, &size,
|
2004-05-11 07:29:02 -04:00
|
|
|
"\r\nContent-Type: multipart/mixed,"
|
|
|
|
" boundary=%s\r\n",
|
|
|
|
fileboundary);
|
|
|
|
if (result)
|
2004-05-10 03:11:52 -04:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
file = post;
|
|
|
|
|
|
|
|
do {
|
2002-03-11 10:18:59 -05:00
|
|
|
|
|
|
|
/* If 'showfilename' is set, that is a faked name passed on to us
|
|
|
|
to use to in the formpost. If that is not set, the actually used
|
|
|
|
local file name should be added. */
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
if(post->more) {
|
2002-06-12 17:40:59 -04:00
|
|
|
/* if multiple-file */
|
2004-10-01 02:36:11 -04:00
|
|
|
char *filebasename=
|
|
|
|
(!file->showfilename)?strippath(file->contents):NULL;
|
|
|
|
|
2004-05-10 03:11:52 -04:00
|
|
|
result = AddFormDataf(&form, &size,
|
2004-05-11 07:29:02 -04:00
|
|
|
"\r\n--%s\r\nContent-Disposition: "
|
|
|
|
"attachment; filename=\"%s\"",
|
|
|
|
fileboundary,
|
|
|
|
(file->showfilename?file->showfilename:
|
2004-10-01 02:36:11 -04:00
|
|
|
filebasename));
|
|
|
|
if (filebasename)
|
|
|
|
free(filebasename);
|
2004-05-11 07:29:02 -04:00
|
|
|
if (result)
|
2004-05-10 03:11:52 -04:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2002-06-12 17:40:59 -04:00
|
|
|
else if((post->flags & HTTPPOST_FILENAME) ||
|
|
|
|
(post->flags & HTTPPOST_BUFFER)) {
|
|
|
|
|
2004-10-01 02:36:11 -04:00
|
|
|
char *filebasename=
|
|
|
|
(!post->showfilename)?strippath(post->contents):NULL;
|
|
|
|
|
2004-05-10 03:11:52 -04:00
|
|
|
result = AddFormDataf(&form, &size,
|
2004-05-11 07:29:02 -04:00
|
|
|
"; filename=\"%s\"",
|
|
|
|
(post->showfilename?post->showfilename:
|
2004-10-01 02:36:11 -04:00
|
|
|
filebasename));
|
|
|
|
if (filebasename)
|
|
|
|
free(filebasename);
|
|
|
|
|
2004-05-11 07:29:02 -04:00
|
|
|
if (result)
|
2004-05-10 03:11:52 -04:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2004-06-03 09:03:57 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
if(file->contenttype) {
|
2002-06-12 17:40:59 -04:00
|
|
|
/* we have a specified type */
|
2004-05-10 03:11:52 -04:00
|
|
|
result = AddFormDataf(&form, &size,
|
2004-05-11 07:29:02 -04:00
|
|
|
"\r\nContent-Type: %s",
|
|
|
|
file->contenttype);
|
|
|
|
if (result)
|
2004-05-10 03:11:52 -04:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2000-10-09 18:29:35 -04:00
|
|
|
|
2001-12-14 07:59:16 -05:00
|
|
|
curList = file->contentheader;
|
|
|
|
while( curList ) {
|
|
|
|
/* Process the additional headers specified for this form */
|
2004-05-10 03:11:52 -04:00
|
|
|
result = AddFormDataf( &form, &size, "\r\n%s", curList->data );
|
2004-05-11 07:29:02 -04:00
|
|
|
if (result)
|
2004-05-10 03:11:52 -04:00
|
|
|
break;
|
2001-12-14 07:59:16 -05:00
|
|
|
curList = curList->next;
|
|
|
|
}
|
2004-05-11 07:29:02 -04:00
|
|
|
if (result) {
|
2004-05-10 03:11:52 -04:00
|
|
|
Curl_formclean(firstform);
|
|
|
|
free(boundary);
|
|
|
|
return result;
|
|
|
|
}
|
2001-12-14 07:59:16 -05:00
|
|
|
|
2000-10-09 18:29:35 -04:00
|
|
|
#if 0
|
|
|
|
/* The header Content-Transfer-Encoding: seems to confuse some receivers
|
|
|
|
* (like the built-in PHP engine). While I can't see any reason why it
|
|
|
|
* should, I can just as well skip this to the benefit of the users who
|
|
|
|
* are using such confused receivers.
|
|
|
|
*/
|
2004-06-03 09:03:57 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
if(file->contenttype &&
|
2002-10-28 16:52:00 -05:00
|
|
|
!checkprefix("text/", file->contenttype)) {
|
2002-06-12 17:40:59 -04:00
|
|
|
/* this is not a text content, mention our binary encoding */
|
|
|
|
size += AddFormData(&form, "\r\nContent-Transfer-Encoding: binary", 0);
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2000-10-09 18:29:35 -04:00
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-06-14 04:51:43 -04:00
|
|
|
result = AddFormDataf(&form, &size, "\r\n\r\n");
|
2004-05-11 07:29:02 -04:00
|
|
|
if (result)
|
2004-05-10 03:11:52 -04:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2000-07-25 08:21:22 -04:00
|
|
|
if((post->flags & HTTPPOST_FILENAME) ||
|
2002-06-12 17:40:59 -04:00
|
|
|
(post->flags & HTTPPOST_READFILE)) {
|
|
|
|
/* we should include the contents from the specified file */
|
|
|
|
FILE *fileread;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-04-23 07:00:47 -04:00
|
|
|
fileread = strequal("-", file->contents)?
|
|
|
|
stdin:fopen(file->contents, "rb"); /* binary read for win32 */
|
2004-06-14 04:51:43 -04:00
|
|
|
|
2004-04-23 07:00:47 -04:00
|
|
|
/*
|
|
|
|
* VMS: This only allows for stream files on VMS. Stream files are
|
|
|
|
* OK, as are FIXED & VAR files WITHOUT implied CC For implied CC,
|
|
|
|
* every record needs to have a \n appended & 1 added to SIZE
|
|
|
|
*/
|
|
|
|
|
2002-06-12 17:40:59 -04:00
|
|
|
if(fileread) {
|
2004-06-14 04:51:43 -04:00
|
|
|
if(fileread != stdin) {
|
|
|
|
/* close the file again */
|
2004-05-12 05:02:23 -04:00
|
|
|
fclose(fileread);
|
2004-06-14 04:51:43 -04:00
|
|
|
/* add the file name only - for later reading from this */
|
|
|
|
result = AddFormData(&form, FORM_FILE, file->contents, 0, &size);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* When uploading from stdin, we can't know the size of the file,
|
|
|
|
* thus must read the full file as before. We *could* use chunked
|
|
|
|
* transfer-encoding, but that only works for HTTP 1.1 and we
|
|
|
|
* can't be sure we work with such a server.
|
|
|
|
*/
|
|
|
|
size_t nread;
|
|
|
|
char buffer[512];
|
|
|
|
while((nread = fread(buffer, 1, sizeof(buffer), fileread))) {
|
|
|
|
result = AddFormData(&form, FORM_DATA, buffer, nread, &size);
|
|
|
|
if (result)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-05-11 07:29:02 -04:00
|
|
|
if (result) {
|
2004-05-10 03:11:52 -04:00
|
|
|
Curl_formclean(firstform);
|
|
|
|
free(boundary);
|
|
|
|
return result;
|
|
|
|
}
|
2002-04-15 07:19:03 -04:00
|
|
|
|
2002-06-12 17:40:59 -04:00
|
|
|
}
|
2002-01-19 06:08:05 -05:00
|
|
|
else {
|
2002-04-15 07:19:03 -04:00
|
|
|
Curl_formclean(firstform);
|
|
|
|
free(boundary);
|
|
|
|
*finalform = NULL;
|
|
|
|
return CURLE_READ_ERROR;
|
2002-06-12 17:40:59 -04:00
|
|
|
}
|
|
|
|
|
2004-06-03 09:03:57 -04:00
|
|
|
}
|
2004-02-27 08:21:14 -05:00
|
|
|
else if (post->flags & HTTPPOST_BUFFER) {
|
2004-05-11 07:29:02 -04:00
|
|
|
/* include contents of buffer */
|
2004-06-14 04:51:43 -04:00
|
|
|
result = AddFormData(&form, FORM_DATA, post->buffer,
|
|
|
|
post->bufferlength, &size);
|
2004-05-11 07:29:02 -04:00
|
|
|
if (result)
|
2004-05-10 03:11:52 -04:00
|
|
|
break;
|
2002-01-19 06:08:05 -05:00
|
|
|
}
|
2002-06-12 17:40:59 -04:00
|
|
|
|
2002-04-15 07:19:03 -04:00
|
|
|
else {
|
2002-06-12 17:40:59 -04:00
|
|
|
/* include the contents we got */
|
2004-06-14 04:51:43 -04:00
|
|
|
result = AddFormData(&form, FORM_DATA, post->contents,
|
|
|
|
post->contentslength, &size);
|
2004-05-11 07:29:02 -04:00
|
|
|
if (result)
|
2004-05-10 03:11:52 -04:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
} while((file = file->more)); /* for each specified file for this field */
|
2004-05-11 07:29:02 -04:00
|
|
|
if (result) {
|
2004-05-10 03:11:52 -04:00
|
|
|
Curl_formclean(firstform);
|
|
|
|
free(boundary);
|
|
|
|
return result;
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
if(post->more) {
|
|
|
|
/* this was a multiple-file inclusion, make a termination file
|
|
|
|
boundary: */
|
2004-05-10 03:11:52 -04:00
|
|
|
result = AddFormDataf(&form, &size,
|
2002-06-12 17:40:59 -04:00
|
|
|
"\r\n--%s--",
|
2004-06-03 09:03:57 -04:00
|
|
|
fileboundary);
|
1999-12-29 09:20:26 -05:00
|
|
|
free(fileboundary);
|
2004-05-11 07:29:02 -04:00
|
|
|
if (result)
|
2004-05-10 03:11:52 -04:00
|
|
|
break;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
} while((post=post->next)); /* for each field */
|
2004-05-11 07:29:02 -04:00
|
|
|
if (result) {
|
2004-05-10 03:11:52 -04:00
|
|
|
Curl_formclean(firstform);
|
|
|
|
free(boundary);
|
|
|
|
return result;
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
/* end-boundary for everything */
|
2004-05-10 03:11:52 -04:00
|
|
|
result = AddFormDataf(&form, &size,
|
2002-06-12 17:40:59 -04:00
|
|
|
"\r\n--%s--\r\n",
|
|
|
|
boundary);
|
2004-05-11 07:29:02 -04:00
|
|
|
if (result) {
|
2004-05-10 03:11:52 -04:00
|
|
|
Curl_formclean(firstform);
|
|
|
|
free(boundary);
|
|
|
|
return result;
|
|
|
|
}
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
*sizep = size;
|
|
|
|
|
|
|
|
free(boundary);
|
|
|
|
|
2002-04-15 07:19:03 -04:00
|
|
|
*finalform=firstform;
|
|
|
|
|
|
|
|
return result;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2004-04-23 06:37:52 -04:00
|
|
|
/*
|
|
|
|
* Curl_FormInit() inits the struct 'form' points to with the 'formdata'
|
|
|
|
* and resets the 'sent' counter.
|
|
|
|
*/
|
2001-01-05 05:11:41 -05:00
|
|
|
int Curl_FormInit(struct Form *form, struct FormData *formdata )
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
|
|
|
if(!formdata)
|
|
|
|
return 1; /* error */
|
2000-06-15 10:33:17 -04:00
|
|
|
|
2000-05-22 10:12:12 -04:00
|
|
|
form->data = formdata;
|
|
|
|
form->sent = 0;
|
2004-06-14 04:51:43 -04:00
|
|
|
form->fp = NULL;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2004-06-14 04:51:43 -04:00
|
|
|
static size_t readfromfile(struct Form *form, char *buffer, size_t size)
|
|
|
|
{
|
|
|
|
size_t nread;
|
|
|
|
if(!form->fp) {
|
|
|
|
/* this file hasn't yet been opened */
|
|
|
|
form->fp = fopen(form->data->line, "rb"); /* b is for binary */
|
|
|
|
if(!form->fp)
|
|
|
|
return -1; /* failure */
|
|
|
|
}
|
|
|
|
nread = fread(buffer, 1, size, form->fp);
|
|
|
|
|
|
|
|
if(nread != size) {
|
|
|
|
/* this is the last chunk form the file, move on */
|
|
|
|
fclose(form->fp);
|
|
|
|
form->fp = NULL;
|
|
|
|
form->data = form->data->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nread;
|
|
|
|
}
|
|
|
|
|
2004-04-23 06:37:52 -04:00
|
|
|
/*
|
|
|
|
* Curl_FormReader() is the fread() emulation function that will be used to
|
|
|
|
* deliver the formdata to the transfer loop and then sent away to the peer.
|
|
|
|
*/
|
2004-02-26 08:40:43 -05:00
|
|
|
size_t Curl_FormReader(char *buffer,
|
|
|
|
size_t size,
|
|
|
|
size_t nitems,
|
|
|
|
FILE *mydata)
|
2001-08-21 09:18:07 -04:00
|
|
|
{
|
|
|
|
struct Form *form;
|
2004-02-26 08:40:43 -05:00
|
|
|
size_t wantedsize;
|
|
|
|
size_t gotsize = 0;
|
2001-08-21 09:18:07 -04:00
|
|
|
|
|
|
|
form=(struct Form *)mydata;
|
|
|
|
|
|
|
|
wantedsize = size * nitems;
|
|
|
|
|
|
|
|
if(!form->data)
|
2002-11-29 03:12:20 -05:00
|
|
|
return 0; /* nothing, error, empty */
|
2001-08-21 09:18:07 -04:00
|
|
|
|
2004-10-24 18:31:40 -04:00
|
|
|
if(form->data->type == FORM_FILE) {
|
|
|
|
gotsize = readfromfile(form, buffer, wantedsize);
|
2004-06-14 04:51:43 -04:00
|
|
|
|
2004-10-24 18:31:40 -04:00
|
|
|
if(gotsize)
|
|
|
|
/* If positive or -1, return. If zero, continue! */
|
|
|
|
return gotsize;
|
|
|
|
}
|
2001-08-21 09:18:07 -04:00
|
|
|
do {
|
2004-06-03 09:03:57 -04:00
|
|
|
|
2001-08-21 09:18:07 -04:00
|
|
|
if( (form->data->length - form->sent ) > wantedsize - gotsize) {
|
|
|
|
|
|
|
|
memcpy(buffer + gotsize , form->data->line + form->sent,
|
|
|
|
wantedsize - gotsize);
|
|
|
|
|
|
|
|
form->sent += wantedsize-gotsize;
|
|
|
|
|
|
|
|
return wantedsize;
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(buffer+gotsize,
|
|
|
|
form->data->line + form->sent,
|
|
|
|
(form->data->length - form->sent) );
|
|
|
|
gotsize += form->data->length - form->sent;
|
2004-06-03 09:03:57 -04:00
|
|
|
|
2001-08-21 09:18:07 -04:00
|
|
|
form->sent = 0;
|
|
|
|
|
|
|
|
form->data = form->data->next; /* advance */
|
|
|
|
|
2004-06-14 04:51:43 -04:00
|
|
|
} while(form->data && (form->data->type == FORM_DATA));
|
2001-08-21 09:18:07 -04:00
|
|
|
/* If we got an empty line and we have more data, we proceed to the next
|
|
|
|
line immediately to avoid returning zero before we've reached the end.
|
|
|
|
This is the bug reported November 22 1999 on curl 6.3. (Daniel) */
|
|
|
|
|
|
|
|
return gotsize;
|
|
|
|
}
|
|
|
|
|
2004-04-23 06:37:52 -04:00
|
|
|
/*
|
|
|
|
* Curl_formpostheader() returns the first line of the formpost, the
|
|
|
|
* request-header part (which is not part of the request-body like the rest of
|
|
|
|
* the post).
|
|
|
|
*/
|
|
|
|
char *Curl_formpostheader(void *formp, size_t *len)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2004-04-23 06:37:52 -04:00
|
|
|
char *header;
|
|
|
|
struct Form *form=(struct Form *)formp;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
if(!form->data)
|
2004-04-23 06:37:52 -04:00
|
|
|
return 0; /* nothing, ERROR! */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-04-23 06:37:52 -04:00
|
|
|
header = form->data->line;
|
|
|
|
*len = form->data->length;
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-04-23 06:37:52 -04:00
|
|
|
form->data = form->data->next; /* advance */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2004-04-23 06:37:52 -04:00
|
|
|
return header;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef _FORM_DEBUG
|
2001-08-21 09:18:07 -04:00
|
|
|
int FormAddTest(const char * errormsg,
|
2002-03-11 10:18:59 -05:00
|
|
|
struct curl_httppost **httppost,
|
|
|
|
struct curl_httppost **last_post,
|
2001-08-21 09:18:07 -04:00
|
|
|
...)
|
|
|
|
{
|
|
|
|
int result;
|
|
|
|
va_list arg;
|
|
|
|
va_start(arg, last_post);
|
|
|
|
if ((result = FormAdd(httppost, last_post, arg)))
|
|
|
|
fprintf (stderr, "ERROR doing FormAdd ret: %d action: %s\n", result,
|
|
|
|
errormsg);
|
|
|
|
va_end(arg);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
char name1[] = "simple_COPYCONTENTS";
|
|
|
|
char name2[] = "COPYCONTENTS_+_CONTENTTYPE";
|
2001-08-28 04:54:33 -04:00
|
|
|
char name3[] = "PTRNAME_+_NAMELENGTH_+_COPYNAME_+_CONTENTSLENGTH";
|
|
|
|
char name4[] = "simple_PTRCONTENTS";
|
|
|
|
char name5[] = "PTRCONTENTS_+_CONTENTSLENGTH";
|
|
|
|
char name6[] = "PTRCONTENTS_+_CONTENTSLENGTH_+_CONTENTTYPE";
|
|
|
|
char name7[] = "FILE1_+_CONTENTTYPE";
|
|
|
|
char name8[] = "FILE1_+_FILE2";
|
|
|
|
char name9[] = "FILE1_+_FILE2_+_FILE3";
|
2001-10-03 03:54:42 -04:00
|
|
|
char name10[] = "ARRAY: FILE1_+_FILE2_+_FILE3";
|
|
|
|
char name11[] = "FILECONTENT";
|
2001-08-21 09:18:07 -04:00
|
|
|
char value1[] = "value for simple COPYCONTENTS";
|
|
|
|
char value2[] = "value for COPYCONTENTS + CONTENTTYPE";
|
2001-08-28 04:54:33 -04:00
|
|
|
char value3[] = "value for PTRNAME + NAMELENGTH + COPYNAME + CONTENTSLENGTH";
|
|
|
|
char value4[] = "value for simple PTRCONTENTS";
|
|
|
|
char value5[] = "value for PTRCONTENTS + CONTENTSLENGTH";
|
|
|
|
char value6[] = "value for PTRCOTNENTS + CONTENTSLENGTH + CONTENTTYPE";
|
|
|
|
char value7[] = "inet_ntoa_r.h";
|
|
|
|
char value8[] = "Makefile.b32.resp";
|
2001-08-21 09:18:07 -04:00
|
|
|
char type2[] = "image/gif";
|
2001-08-28 04:54:33 -04:00
|
|
|
char type6[] = "text/plain";
|
|
|
|
char type7[] = "text/html";
|
|
|
|
int name3length = strlen(name3);
|
|
|
|
int value3length = strlen(value3);
|
|
|
|
int value5length = strlen(value4);
|
|
|
|
int value6length = strlen(value5);
|
2001-08-21 09:18:07 -04:00
|
|
|
int errors = 0;
|
|
|
|
int size;
|
2004-02-26 08:40:43 -05:00
|
|
|
size_t nread;
|
2001-08-21 09:18:07 -04:00
|
|
|
char buffer[4096];
|
2002-03-11 10:18:59 -05:00
|
|
|
struct curl_httppost *httppost=NULL;
|
|
|
|
struct curl_httppost *last_post=NULL;
|
2001-10-03 03:54:42 -04:00
|
|
|
struct curl_forms forms[4];
|
2001-08-21 09:18:07 -04:00
|
|
|
|
|
|
|
struct FormData *form;
|
|
|
|
struct Form formread;
|
|
|
|
|
|
|
|
if (FormAddTest("simple COPYCONTENTS test", &httppost, &last_post,
|
|
|
|
CURLFORM_COPYNAME, name1, CURLFORM_COPYCONTENTS, value1,
|
|
|
|
CURLFORM_END))
|
|
|
|
++errors;
|
|
|
|
if (FormAddTest("COPYCONTENTS + CONTENTTYPE test", &httppost, &last_post,
|
|
|
|
CURLFORM_COPYNAME, name2, CURLFORM_COPYCONTENTS, value2,
|
|
|
|
CURLFORM_CONTENTTYPE, type2, CURLFORM_END))
|
|
|
|
++errors;
|
2001-08-28 04:54:33 -04:00
|
|
|
/* make null character at start to check that contentslength works
|
|
|
|
correctly */
|
|
|
|
name3[1] = '\0';
|
|
|
|
value3[1] = '\0';
|
|
|
|
if (FormAddTest("PTRNAME + NAMELENGTH + COPYNAME + CONTENTSLENGTH test",
|
2004-10-06 03:50:18 -04:00
|
|
|
&httppost, &last_post,
|
2001-08-28 04:54:33 -04:00
|
|
|
CURLFORM_PTRNAME, name3, CURLFORM_COPYCONTENTS, value3,
|
|
|
|
CURLFORM_CONTENTSLENGTH, value3length,
|
2004-10-06 03:50:18 -04:00
|
|
|
CURLFORM_NAMELENGTH, name3length, CURLFORM_END))
|
2001-08-28 04:54:33 -04:00
|
|
|
++errors;
|
2001-08-21 09:18:07 -04:00
|
|
|
if (FormAddTest("simple PTRCONTENTS test", &httppost, &last_post,
|
2001-08-28 04:54:33 -04:00
|
|
|
CURLFORM_COPYNAME, name4, CURLFORM_PTRCONTENTS, value4,
|
2001-08-21 09:18:07 -04:00
|
|
|
CURLFORM_END))
|
|
|
|
++errors;
|
|
|
|
/* make null character at start to check that contentslength works
|
|
|
|
correctly */
|
2001-08-28 04:54:33 -04:00
|
|
|
value5[1] = '\0';
|
2001-08-21 09:18:07 -04:00
|
|
|
if (FormAddTest("PTRCONTENTS + CONTENTSLENGTH test", &httppost, &last_post,
|
2001-08-28 04:54:33 -04:00
|
|
|
CURLFORM_COPYNAME, name5, CURLFORM_PTRCONTENTS, value5,
|
|
|
|
CURLFORM_CONTENTSLENGTH, value5length, CURLFORM_END))
|
2001-08-21 09:18:07 -04:00
|
|
|
++errors;
|
|
|
|
/* make null character at start to check that contentslength works
|
|
|
|
correctly */
|
2001-08-28 04:54:33 -04:00
|
|
|
value6[1] = '\0';
|
2001-08-21 09:18:07 -04:00
|
|
|
if (FormAddTest("PTRCONTENTS + CONTENTSLENGTH + CONTENTTYPE test",
|
|
|
|
&httppost, &last_post,
|
2001-08-28 04:54:33 -04:00
|
|
|
CURLFORM_COPYNAME, name6, CURLFORM_PTRCONTENTS, value6,
|
|
|
|
CURLFORM_CONTENTSLENGTH, value6length,
|
|
|
|
CURLFORM_CONTENTTYPE, type6, CURLFORM_END))
|
2001-08-21 09:18:07 -04:00
|
|
|
++errors;
|
|
|
|
if (FormAddTest("FILE + CONTENTTYPE test", &httppost, &last_post,
|
2001-08-28 04:54:33 -04:00
|
|
|
CURLFORM_COPYNAME, name7, CURLFORM_FILE, value7,
|
|
|
|
CURLFORM_CONTENTTYPE, type7, CURLFORM_END))
|
2001-08-21 09:18:07 -04:00
|
|
|
++errors;
|
|
|
|
if (FormAddTest("FILE1 + FILE2 test", &httppost, &last_post,
|
2001-08-28 04:54:33 -04:00
|
|
|
CURLFORM_COPYNAME, name8, CURLFORM_FILE, value7,
|
|
|
|
CURLFORM_FILE, value8, CURLFORM_END))
|
|
|
|
++errors;
|
|
|
|
if (FormAddTest("FILE1 + FILE2 + FILE3 test", &httppost, &last_post,
|
|
|
|
CURLFORM_COPYNAME, name9, CURLFORM_FILE, value7,
|
|
|
|
CURLFORM_FILE, value8, CURLFORM_FILE, value7, CURLFORM_END))
|
2001-08-21 09:18:07 -04:00
|
|
|
++errors;
|
2001-10-03 03:54:42 -04:00
|
|
|
forms[0].option = CURLFORM_FILE;
|
|
|
|
forms[0].value = value7;
|
|
|
|
forms[1].option = CURLFORM_FILE;
|
|
|
|
forms[1].value = value8;
|
|
|
|
forms[2].option = CURLFORM_FILE;
|
|
|
|
forms[2].value = value7;
|
|
|
|
forms[3].option = CURLFORM_END;
|
|
|
|
if (FormAddTest("FILE1 + FILE2 + FILE3 ARRAY test", &httppost, &last_post,
|
|
|
|
CURLFORM_COPYNAME, name10, CURLFORM_ARRAY, forms,
|
|
|
|
CURLFORM_END))
|
|
|
|
++errors;
|
|
|
|
if (FormAddTest("FILECONTENT test", &httppost, &last_post,
|
|
|
|
CURLFORM_COPYNAME, name11, CURLFORM_FILECONTENT, value7,
|
|
|
|
CURLFORM_END))
|
|
|
|
++errors;
|
2001-08-21 09:18:07 -04:00
|
|
|
|
|
|
|
form=Curl_getFormData(httppost, &size);
|
|
|
|
|
|
|
|
Curl_FormInit(&formread, form);
|
|
|
|
|
|
|
|
do {
|
|
|
|
nread = Curl_FormReader(buffer, 1, sizeof(buffer),
|
|
|
|
(FILE *)&formread);
|
|
|
|
|
|
|
|
if(-1 == nread)
|
|
|
|
break;
|
2001-10-29 08:21:25 -05:00
|
|
|
fwrite(buffer, nread, 1, stdout);
|
2001-08-21 09:18:07 -04:00
|
|
|
} while(1);
|
|
|
|
|
2001-10-29 08:21:25 -05:00
|
|
|
fprintf(stdout, "size: %d\n", size);
|
2001-08-21 09:18:07 -04:00
|
|
|
if (errors)
|
2001-10-29 08:21:25 -05:00
|
|
|
fprintf(stdout, "\n==> %d Test(s) failed!\n", errors);
|
2001-08-21 09:18:07 -04:00
|
|
|
else
|
|
|
|
fprintf(stdout, "\nAll Tests seem to have worked (please check output)\n");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-11-24 15:38:20 -05:00
|
|
|
#endif /* _FORM_DEBUG */
|
2001-08-21 09:18:07 -04:00
|
|
|
|
2004-06-09 04:22:02 -04:00
|
|
|
#else /* CURL_DISABLE_HTTP */
|
|
|
|
CURLFORMcode curl_formadd(struct curl_httppost **httppost,
|
|
|
|
struct curl_httppost **last_post,
|
|
|
|
...)
|
|
|
|
{
|
|
|
|
(void)httppost;
|
|
|
|
(void)last_post;
|
|
|
|
return CURL_FORMADD_DISABLED;
|
|
|
|
}
|
|
|
|
|
2004-06-13 04:59:37 -04:00
|
|
|
void curl_formfree(struct curl_httppost *form)
|
|
|
|
{
|
|
|
|
(void)form;
|
|
|
|
/* does nothing HTTP is disabled */
|
|
|
|
}
|
|
|
|
|
2004-06-09 04:22:02 -04:00
|
|
|
#endif /* CURL_DISABLE_HTTP */
|
2004-06-14 04:51:43 -04:00
|
|
|
|
2005-11-24 15:38:20 -05:00
|
|
|
#if !defined(CURL_DISABLE_HTTP) || defined(USE_SSLEAY)
|
|
|
|
|
2004-06-14 04:51:43 -04:00
|
|
|
/*
|
|
|
|
* Curl_FormBoundary() creates a suitable boundary string and returns an
|
|
|
|
* allocated one. This is also used by SSL-code so it must be present even
|
|
|
|
* if HTTP is disabled!
|
|
|
|
*/
|
|
|
|
char *Curl_FormBoundary(void)
|
|
|
|
{
|
|
|
|
char *retstring;
|
2004-12-22 15:12:15 -05:00
|
|
|
static int randomizer; /* this is just so that two boundaries within
|
2004-10-06 03:50:18 -04:00
|
|
|
the same form won't be identical */
|
2004-06-14 04:51:43 -04:00
|
|
|
size_t i;
|
|
|
|
|
2004-12-14 20:38:25 -05:00
|
|
|
static const char table16[]="abcdef0123456789";
|
2004-06-14 04:51:43 -04:00
|
|
|
|
|
|
|
retstring = (char *)malloc(BOUNDARY_LENGTH+1);
|
|
|
|
|
|
|
|
if(!retstring)
|
|
|
|
return NULL; /* failed */
|
|
|
|
|
2005-04-26 09:08:49 -04:00
|
|
|
srand((unsigned int)time(NULL)+randomizer++); /* seed */
|
2004-06-14 04:51:43 -04:00
|
|
|
|
|
|
|
strcpy(retstring, "----------------------------");
|
|
|
|
|
|
|
|
for(i=strlen(retstring); i<BOUNDARY_LENGTH; i++)
|
|
|
|
retstring[i] = table16[rand()%16];
|
|
|
|
|
|
|
|
/* 28 dashes and 12 hexadecimal digits makes 12^16 (184884258895036416)
|
|
|
|
combinations */
|
|
|
|
retstring[BOUNDARY_LENGTH]=0; /* zero terminate */
|
|
|
|
|
|
|
|
return retstring;
|
|
|
|
}
|
2005-11-24 15:38:20 -05:00
|
|
|
|
|
|
|
#endif /* !defined(CURL_DISABLE_HTTP) || defined(USE_SSLEAY) */
|