2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-10-06 03:50:18 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 09:20:26 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2007-03-31 17:06:40 -04:00
|
|
|
* Copyright (C) 1998 - 2007, 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-10-06 03:50:18 -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
|
|
|
|
2000-08-24 10:26:33 -04:00
|
|
|
#include "setup.h"
|
|
|
|
|
2004-11-11 18:13:06 -05:00
|
|
|
#ifndef CURL_DISABLE_DICT
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
/* -- WIN32 approved -- */
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
|
2006-10-11 12:01:16 -04:00
|
|
|
#ifdef WIN32
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <time.h>
|
|
|
|
#include <io.h>
|
|
|
|
#else
|
|
|
|
#ifdef HAVE_SYS_SOCKET_H
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#endif
|
|
|
|
#include <netinet/in.h>
|
2006-08-30 12:17:06 -04:00
|
|
|
#ifdef HAVE_SYS_TIME_H
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <sys/time.h>
|
2006-08-29 14:45:55 -04:00
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
|
|
|
#include <netdb.h>
|
|
|
|
#ifdef HAVE_ARPA_INET_H
|
|
|
|
#include <arpa/inet.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NET_IF_H
|
|
|
|
#include <net/if.h>
|
|
|
|
#endif
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_PARAM_H
|
|
|
|
#include <sys/param.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_SELECT_H
|
|
|
|
#include <sys/select.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "urldata.h"
|
|
|
|
#include <curl/curl.h>
|
2001-01-17 08:23:01 -05:00
|
|
|
#include "transfer.h"
|
1999-12-29 09:20:26 -05:00
|
|
|
#include "sendf.h"
|
|
|
|
|
|
|
|
#include "progress.h"
|
2000-05-22 10:12:12 -04:00
|
|
|
#include "strequal.h"
|
2004-01-29 08:56:45 -05:00
|
|
|
#include "dict.h"
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
#define _MPRINTF_REPLACE /* use our functions only */
|
|
|
|
#include <curl/mprintf.h>
|
|
|
|
|
2006-05-10 07:44:31 -04:00
|
|
|
/* The last #include file should be: */
|
|
|
|
#include "memdebug.h"
|
|
|
|
|
|
|
|
static char *unescape_word(struct SessionHandle *data, char *inp)
|
|
|
|
{
|
|
|
|
char *newp;
|
|
|
|
char *dictp;
|
|
|
|
char *ptr;
|
|
|
|
int len;
|
|
|
|
unsigned char byte;
|
|
|
|
int olen=0;
|
|
|
|
|
|
|
|
newp = curl_easy_unescape(data, inp, 0, &len);
|
|
|
|
if(!newp)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
dictp = malloc(len*2 + 1); /* add one for terminating zero */
|
|
|
|
if(dictp) {
|
|
|
|
/* According to RFC2229 section 2.2, these letters need to be escaped with
|
|
|
|
\[letter] */
|
|
|
|
for(ptr = newp;
|
2006-08-29 17:11:55 -04:00
|
|
|
(byte = (unsigned char)*ptr) != 0;
|
2006-05-10 07:44:31 -04:00
|
|
|
ptr++) {
|
|
|
|
if ((byte <= 32) || (byte == 127) ||
|
|
|
|
(byte == '\'') || (byte == '\"') || (byte == '\\')) {
|
|
|
|
dictp[olen++] = '\\';
|
|
|
|
}
|
|
|
|
dictp[olen++] = byte;
|
|
|
|
}
|
|
|
|
dictp[olen]=0;
|
|
|
|
|
|
|
|
free(newp);
|
|
|
|
}
|
|
|
|
return dictp;
|
|
|
|
}
|
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
CURLcode Curl_dict(struct connectdata *conn, bool *done)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
|
|
|
char *word;
|
2006-05-10 07:44:31 -04:00
|
|
|
char *eword;
|
1999-12-29 09:20:26 -05:00
|
|
|
char *ppath;
|
|
|
|
char *database = NULL;
|
|
|
|
char *strategy = NULL;
|
|
|
|
char *nthdef = NULL; /* This is not part of the protocol, but required
|
|
|
|
by RFC 2229 */
|
2000-05-22 10:12:12 -04:00
|
|
|
CURLcode result=CURLE_OK;
|
2001-08-30 18:48:34 -04:00
|
|
|
struct SessionHandle *data=conn->data;
|
2004-03-09 17:52:50 -05:00
|
|
|
curl_socket_t sockfd = conn->sock[FIRSTSOCKET];
|
2000-05-22 10:12:12 -04:00
|
|
|
|
2006-09-07 17:49:20 -04:00
|
|
|
char *path = data->reqdata.path;
|
|
|
|
curl_off_t *bytecount = &data->reqdata.keep.bytecount;
|
2000-05-22 10:12:12 -04:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
*done = TRUE; /* unconditionally */
|
|
|
|
|
2001-03-14 09:11:11 -05:00
|
|
|
if(conn->bits.user_passwd) {
|
1999-12-29 09:20:26 -05:00
|
|
|
/* AUTH is missing */
|
|
|
|
}
|
|
|
|
|
|
|
|
if (strnequal(path, DICT_MATCH, sizeof(DICT_MATCH)-1) ||
|
|
|
|
strnequal(path, DICT_MATCH2, sizeof(DICT_MATCH2)-1) ||
|
|
|
|
strnequal(path, DICT_MATCH3, sizeof(DICT_MATCH3)-1)) {
|
2004-10-06 03:50:18 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
word = strchr(path, ':');
|
|
|
|
if (word) {
|
|
|
|
word++;
|
|
|
|
database = strchr(word, ':');
|
|
|
|
if (database) {
|
|
|
|
*database++ = (char)0;
|
|
|
|
strategy = strchr(database, ':');
|
|
|
|
if (strategy) {
|
|
|
|
*strategy++ = (char)0;
|
|
|
|
nthdef = strchr(strategy, ':');
|
|
|
|
if (nthdef) {
|
|
|
|
*nthdef++ = (char)0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-10-06 03:50:18 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
if ((word == NULL) || (*word == (char)0)) {
|
2007-03-31 17:06:40 -04:00
|
|
|
infof(data, "lookup word is missing");
|
|
|
|
word=(char *)"default";
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
if ((database == NULL) || (*database == (char)0)) {
|
2001-08-14 04:18:35 -04:00
|
|
|
database = (char *)"!";
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
if ((strategy == NULL) || (*strategy == (char)0)) {
|
2001-08-14 04:18:35 -04:00
|
|
|
strategy = (char *)".";
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2004-10-06 03:50:18 -04:00
|
|
|
|
2006-05-10 07:44:31 -04:00
|
|
|
eword = unescape_word(data, word);
|
|
|
|
if(!eword)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
2003-11-24 02:15:37 -05:00
|
|
|
result = Curl_sendf(sockfd, conn,
|
2005-02-09 06:50:41 -05:00
|
|
|
"CLIENT " LIBCURL_NAME " " LIBCURL_VERSION "\r\n"
|
2001-10-31 09:48:10 -05:00
|
|
|
"MATCH "
|
|
|
|
"%s " /* database */
|
|
|
|
"%s " /* strategy */
|
2005-02-09 06:50:41 -05:00
|
|
|
"%s\r\n" /* word */
|
|
|
|
"QUIT\r\n",
|
2004-10-06 03:50:18 -04:00
|
|
|
|
2001-10-31 09:48:10 -05:00
|
|
|
database,
|
|
|
|
strategy,
|
2006-05-10 07:44:31 -04:00
|
|
|
eword
|
2001-10-31 09:48:10 -05:00
|
|
|
);
|
2006-05-10 07:44:31 -04:00
|
|
|
|
|
|
|
free(eword);
|
|
|
|
|
2001-10-31 09:48:10 -05:00
|
|
|
if(result)
|
|
|
|
failf(data, "Failed sending DICT request");
|
|
|
|
else
|
2006-09-07 17:49:20 -04:00
|
|
|
result = Curl_setup_transfer(conn, FIRSTSOCKET, -1, FALSE, bytecount,
|
|
|
|
-1, NULL); /* no upload */
|
1999-12-29 09:20:26 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
else if (strnequal(path, DICT_DEFINE, sizeof(DICT_DEFINE)-1) ||
|
|
|
|
strnequal(path, DICT_DEFINE2, sizeof(DICT_DEFINE2)-1) ||
|
|
|
|
strnequal(path, DICT_DEFINE3, sizeof(DICT_DEFINE3)-1)) {
|
2004-10-06 03:50:18 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
word = strchr(path, ':');
|
|
|
|
if (word) {
|
|
|
|
word++;
|
|
|
|
database = strchr(word, ':');
|
|
|
|
if (database) {
|
|
|
|
*database++ = (char)0;
|
|
|
|
nthdef = strchr(database, ':');
|
|
|
|
if (nthdef) {
|
|
|
|
*nthdef++ = (char)0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2004-10-06 03:50:18 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
if ((word == NULL) || (*word == (char)0)) {
|
2007-03-31 17:06:40 -04:00
|
|
|
infof(data, "lookup word is missing");
|
|
|
|
word=(char *)"default";
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
if ((database == NULL) || (*database == (char)0)) {
|
2001-08-14 04:18:35 -04:00
|
|
|
database = (char *)"!";
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2004-10-06 03:50:18 -04:00
|
|
|
|
2006-05-10 07:44:31 -04:00
|
|
|
eword = unescape_word(data, word);
|
|
|
|
if(!eword)
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
|
|
|
|
2003-11-24 02:15:37 -05:00
|
|
|
result = Curl_sendf(sockfd, conn,
|
2005-02-09 06:50:41 -05:00
|
|
|
"CLIENT " LIBCURL_NAME " " LIBCURL_VERSION "\r\n"
|
2001-10-31 09:48:10 -05:00
|
|
|
"DEFINE "
|
|
|
|
"%s " /* database */
|
2005-02-09 06:50:41 -05:00
|
|
|
"%s\r\n" /* word */
|
|
|
|
"QUIT\r\n",
|
2001-10-31 09:48:10 -05:00
|
|
|
database,
|
2006-05-10 07:44:31 -04:00
|
|
|
eword);
|
|
|
|
|
|
|
|
free(eword);
|
|
|
|
|
2001-10-31 09:48:10 -05:00
|
|
|
if(result)
|
|
|
|
failf(data, "Failed sending DICT request");
|
|
|
|
else
|
2006-09-07 17:49:20 -04:00
|
|
|
result = Curl_setup_transfer(conn, FIRSTSOCKET, -1, FALSE, bytecount,
|
|
|
|
-1, NULL); /* no upload */
|
2004-10-06 03:50:18 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
2004-10-06 03:50:18 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
else {
|
2004-10-06 03:50:18 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
ppath = strchr(path, '/');
|
|
|
|
if (ppath) {
|
|
|
|
int i;
|
2004-10-06 03:50:18 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
ppath++;
|
2000-11-20 03:53:21 -05:00
|
|
|
for (i = 0; ppath[i]; i++) {
|
1999-12-29 09:20:26 -05:00
|
|
|
if (ppath[i] == ':')
|
|
|
|
ppath[i] = ' ';
|
|
|
|
}
|
2003-11-24 02:15:37 -05:00
|
|
|
result = Curl_sendf(sockfd, conn,
|
2005-02-09 06:50:41 -05:00
|
|
|
"CLIENT " LIBCURL_NAME " " LIBCURL_VERSION "\r\n"
|
|
|
|
"%s\r\n"
|
|
|
|
"QUIT\r\n", ppath);
|
2001-10-31 09:48:10 -05:00
|
|
|
if(result)
|
|
|
|
failf(data, "Failed sending DICT request");
|
|
|
|
else
|
2006-09-07 17:49:20 -04:00
|
|
|
result = Curl_setup_transfer(conn, FIRSTSOCKET, -1, FALSE, bytecount,
|
|
|
|
-1, NULL);
|
1999-12-29 09:20:26 -05:00
|
|
|
if(result)
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-05-22 10:12:12 -04:00
|
|
|
return CURLE_OK;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2004-11-11 18:13:06 -05:00
|
|
|
#endif /*CURL_DISABLE_DICT*/
|