2001-08-17 06:12:51 -04:00
|
|
|
|
/* This source code was modified by Martin Hedenfalk <mhe@stacken.kth.se> for
|
2006-01-26 05:39:25 -05:00
|
|
|
|
* use in Curl. Martin's latest changes were done 2000-09-18.
|
2001-08-17 06:12:51 -04:00
|
|
|
|
*
|
2006-01-26 05:39:25 -05:00
|
|
|
|
* It has since been patched away like a madman by Daniel Stenberg to make it
|
|
|
|
|
* better applied to curl conditions, and to make it not use globals, pollute
|
|
|
|
|
* name space and more.
|
2001-08-17 06:12:51 -04:00
|
|
|
|
*
|
2000-09-21 04:46:14 -04:00
|
|
|
|
* Copyright (c) 1995, 1996, 1997, 1998, 1999 Kungliga Tekniska H<EFBFBD>gskolan
|
|
|
|
|
* (Royal Institute of Technology, Stockholm, Sweden).
|
2009-04-21 07:46:16 -04:00
|
|
|
|
* Copyright (c) 2004 - 2009 Daniel Stenberg
|
2000-09-21 04:46:14 -04:00
|
|
|
|
* All rights reserved.
|
2004-06-24 03:43:48 -04:00
|
|
|
|
*
|
2000-09-21 04:46:14 -04:00
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
|
* are met:
|
2004-06-24 03:43:48 -04:00
|
|
|
|
*
|
2000-09-21 04:46:14 -04:00
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
2004-06-24 03:43:48 -04:00
|
|
|
|
*
|
2000-09-21 04:46:14 -04:00
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2004-06-24 03:43:48 -04:00
|
|
|
|
*
|
2000-09-21 04:46:14 -04:00
|
|
|
|
* 3. Neither the name of the Institute nor the names of its contributors
|
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
|
* without specific prior written permission.
|
2004-06-24 03:43:48 -04:00
|
|
|
|
*
|
2000-09-21 04:46:14 -04:00
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
|
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
2006-01-26 05:39:25 -05:00
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
|
*
|
|
|
|
|
*/
|
2000-09-21 04:46:14 -04:00
|
|
|
|
|
|
|
|
|
#include "setup.h"
|
|
|
|
|
|
2002-06-11 07:13:01 -04:00
|
|
|
|
#ifndef CURL_DISABLE_FTP
|
2003-12-02 08:27:29 -05:00
|
|
|
|
#ifdef HAVE_KRB4
|
2000-09-21 04:46:14 -04:00
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
2003-12-04 10:21:49 -05:00
|
|
|
|
#ifdef HAVE_NETDB_H
|
2000-09-21 04:46:14 -04:00
|
|
|
|
#include <netdb.h>
|
2003-12-04 10:21:49 -05:00
|
|
|
|
#endif
|
2000-09-21 04:46:14 -04:00
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <krb.h>
|
2003-01-27 09:19:22 -05:00
|
|
|
|
#include <des.h>
|
2000-09-21 04:46:14 -04:00
|
|
|
|
|
2001-08-14 04:30:08 -04:00
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
|
#include <unistd.h> /* for getpid() */
|
|
|
|
|
#endif
|
|
|
|
|
|
2005-03-13 19:00:45 -05:00
|
|
|
|
#include "urldata.h"
|
2008-08-16 20:25:38 -04:00
|
|
|
|
#include "curl_base64.h"
|
2001-01-05 05:11:41 -05:00
|
|
|
|
#include "ftp.h"
|
|
|
|
|
#include "sendf.h"
|
2004-02-21 09:57:29 -05:00
|
|
|
|
#include "krb4.h"
|
2008-09-23 15:16:56 -04:00
|
|
|
|
#include "inet_ntop.h"
|
2009-04-21 07:46:16 -04:00
|
|
|
|
#include "curl_memory.h"
|
2001-01-05 05:11:41 -05:00
|
|
|
|
|
2000-10-09 07:12:34 -04:00
|
|
|
|
/* The last #include file should be: */
|
|
|
|
|
#include "memdebug.h"
|
|
|
|
|
|
2001-08-17 06:12:51 -04:00
|
|
|
|
#define LOCAL_ADDR (&conn->local_addr)
|
2004-06-24 03:43:48 -04:00
|
|
|
|
#define REMOTE_ADDR conn->ip_addr->ai_addr
|
2000-09-21 04:46:14 -04:00
|
|
|
|
#define myctladdr LOCAL_ADDR
|
|
|
|
|
#define hisctladdr REMOTE_ADDR
|
|
|
|
|
|
|
|
|
|
struct krb4_data {
|
2003-12-04 10:21:49 -05:00
|
|
|
|
des_cblock key;
|
|
|
|
|
des_key_schedule schedule;
|
|
|
|
|
char name[ANAME_SZ];
|
|
|
|
|
char instance[INST_SZ];
|
|
|
|
|
char realm[REALM_SZ];
|
2000-09-21 04:46:14 -04:00
|
|
|
|
};
|
|
|
|
|
|
2000-09-26 18:28:46 -04:00
|
|
|
|
#ifndef HAVE_STRLCPY
|
2001-05-18 06:02:12 -04:00
|
|
|
|
/* if it ever goes non-static, make it Curl_ prefixed! */
|
2001-05-31 01:55:42 -04:00
|
|
|
|
static size_t
|
2000-09-26 18:28:46 -04:00
|
|
|
|
strlcpy (char *dst, const char *src, size_t dst_sz)
|
|
|
|
|
{
|
2003-12-04 10:21:49 -05:00
|
|
|
|
size_t n;
|
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
|
|
for (p = dst, n = 0;
|
|
|
|
|
n + 1 < dst_sz && *src != '\0';
|
|
|
|
|
++p, ++src, ++n)
|
|
|
|
|
*p = *src;
|
|
|
|
|
*p = '\0';
|
2007-11-07 04:21:35 -05:00
|
|
|
|
if(*src == '\0')
|
2003-12-04 10:21:49 -05:00
|
|
|
|
return n;
|
|
|
|
|
else
|
|
|
|
|
return n + strlen (src);
|
2000-09-26 18:28:46 -04:00
|
|
|
|
}
|
2001-01-05 05:11:41 -05:00
|
|
|
|
#else
|
|
|
|
|
size_t strlcpy (char *dst, const char *src, size_t dst_sz);
|
2000-09-26 18:28:46 -04:00
|
|
|
|
#endif
|
|
|
|
|
|
2000-09-21 04:46:14 -04:00
|
|
|
|
static int
|
|
|
|
|
krb4_check_prot(void *app_data, int level)
|
|
|
|
|
{
|
2001-08-14 04:30:08 -04:00
|
|
|
|
app_data = NULL; /* prevent compiler warning */
|
|
|
|
|
if(level == prot_confidential)
|
|
|
|
|
return -1;
|
|
|
|
|
return 0;
|
2000-09-21 04:46:14 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
krb4_decode(void *app_data, void *buf, int len, int level,
|
2004-10-06 03:50:18 -04:00
|
|
|
|
struct connectdata *conn)
|
2000-09-21 04:46:14 -04:00
|
|
|
|
{
|
2003-12-04 10:21:49 -05:00
|
|
|
|
MSG_DAT m;
|
|
|
|
|
int e;
|
|
|
|
|
struct krb4_data *d = app_data;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
|
2003-12-04 10:21:49 -05:00
|
|
|
|
if(level == prot_safe)
|
|
|
|
|
e = krb_rd_safe(buf, len, &d->key,
|
|
|
|
|
(struct sockaddr_in *)REMOTE_ADDR,
|
|
|
|
|
(struct sockaddr_in *)LOCAL_ADDR, &m);
|
|
|
|
|
else
|
2004-06-24 03:43:48 -04:00
|
|
|
|
e = krb_rd_priv(buf, len, d->schedule, &d->key,
|
2003-12-04 10:21:49 -05:00
|
|
|
|
(struct sockaddr_in *)REMOTE_ADDR,
|
|
|
|
|
(struct sockaddr_in *)LOCAL_ADDR, &m);
|
|
|
|
|
if(e) {
|
|
|
|
|
struct SessionHandle *data = conn->data;
|
|
|
|
|
infof(data, "krb4_decode: %s\n", krb_get_err_text(e));
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
memmove(buf, m.app_data, m.app_length);
|
|
|
|
|
return m.app_length;
|
2000-09-21 04:46:14 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
|
krb4_overhead(void *app_data, int level, int len)
|
|
|
|
|
{
|
2001-08-14 04:30:08 -04:00
|
|
|
|
/* no arguments are used, just init them to prevent compiler warnings */
|
|
|
|
|
app_data = NULL;
|
|
|
|
|
level = 0;
|
|
|
|
|
len = 0;
|
|
|
|
|
return 31;
|
2000-09-21 04:46:14 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2008-05-09 07:27:54 -04:00
|
|
|
|
krb4_encode(void *app_data, const void *from, int length, int level, void **to,
|
2004-10-06 03:50:18 -04:00
|
|
|
|
struct connectdata *conn)
|
2000-09-21 04:46:14 -04:00
|
|
|
|
{
|
2003-12-04 10:21:49 -05:00
|
|
|
|
struct krb4_data *d = app_data;
|
|
|
|
|
*to = malloc(length + 31);
|
2008-11-16 07:26:50 -05:00
|
|
|
|
if(!*to)
|
|
|
|
|
return -1;
|
2003-12-04 10:21:49 -05:00
|
|
|
|
if(level == prot_safe)
|
2008-05-09 07:27:54 -04:00
|
|
|
|
/* NOTE that the void* cast is safe, krb_mk_safe/priv don't modify the
|
|
|
|
|
* input buffer
|
|
|
|
|
*/
|
|
|
|
|
return krb_mk_safe((void*)from, *to, length, &d->key,
|
2003-12-04 10:21:49 -05:00
|
|
|
|
(struct sockaddr_in *)LOCAL_ADDR,
|
|
|
|
|
(struct sockaddr_in *)REMOTE_ADDR);
|
|
|
|
|
else if(level == prot_private)
|
2008-05-09 07:27:54 -04:00
|
|
|
|
return krb_mk_priv((void*)from, *to, length, d->schedule, &d->key,
|
2003-12-04 10:21:49 -05:00
|
|
|
|
(struct sockaddr_in *)LOCAL_ADDR,
|
|
|
|
|
(struct sockaddr_in *)REMOTE_ADDR);
|
|
|
|
|
else
|
|
|
|
|
return -1;
|
2000-09-21 04:46:14 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int
|
2004-06-24 03:43:48 -04:00
|
|
|
|
mk_auth(struct krb4_data *d, KTEXT adat,
|
2004-10-06 03:50:18 -04:00
|
|
|
|
const char *service, char *host, int checksum)
|
2000-09-21 04:46:14 -04:00
|
|
|
|
{
|
2003-12-04 10:21:49 -05:00
|
|
|
|
int ret;
|
|
|
|
|
CREDENTIALS cred;
|
|
|
|
|
char sname[SNAME_SZ], inst[INST_SZ], realm[REALM_SZ];
|
|
|
|
|
|
|
|
|
|
strlcpy(sname, service, sizeof(sname));
|
|
|
|
|
strlcpy(inst, krb_get_phost(host), sizeof(inst));
|
|
|
|
|
strlcpy(realm, krb_realmofhost(host), sizeof(realm));
|
|
|
|
|
ret = krb_mk_req(adat, sname, inst, realm, checksum);
|
|
|
|
|
if(ret)
|
2000-09-21 04:46:14 -04:00
|
|
|
|
return ret;
|
2003-12-04 10:21:49 -05:00
|
|
|
|
strlcpy(sname, service, sizeof(sname));
|
|
|
|
|
strlcpy(inst, krb_get_phost(host), sizeof(inst));
|
|
|
|
|
strlcpy(realm, krb_realmofhost(host), sizeof(realm));
|
|
|
|
|
ret = krb_get_cred(sname, inst, realm, &cred);
|
|
|
|
|
memmove(&d->key, &cred.session, sizeof(des_cblock));
|
|
|
|
|
des_key_sched(&d->key, d->schedule);
|
|
|
|
|
memset(&cred, 0, sizeof(cred));
|
|
|
|
|
return ret;
|
2000-09-21 04:46:14 -04:00
|
|
|
|
}
|
|
|
|
|
|
2003-01-27 09:19:22 -05:00
|
|
|
|
#ifdef HAVE_KRB_GET_OUR_IP_FOR_REALM
|
|
|
|
|
int krb_get_our_ip_for_realm(char *, struct in_addr *);
|
|
|
|
|
#endif
|
|
|
|
|
|
2000-09-21 04:46:14 -04:00
|
|
|
|
static int
|
|
|
|
|
krb4_auth(void *app_data, struct connectdata *conn)
|
|
|
|
|
{
|
2001-08-14 04:30:08 -04:00
|
|
|
|
int ret;
|
|
|
|
|
char *p;
|
2005-02-22 07:10:30 -05:00
|
|
|
|
unsigned char *ptr;
|
2005-02-22 07:20:30 -05:00
|
|
|
|
size_t len;
|
2001-08-14 04:30:08 -04:00
|
|
|
|
KTEXT_ST adat;
|
|
|
|
|
MSG_DAT msg_data;
|
|
|
|
|
int checksum;
|
|
|
|
|
u_int32_t cs;
|
|
|
|
|
struct krb4_data *d = app_data;
|
2004-04-28 16:34:04 -04:00
|
|
|
|
char *host = conn->host.name;
|
2001-08-14 04:30:08 -04:00
|
|
|
|
ssize_t nread;
|
2001-08-17 06:12:51 -04:00
|
|
|
|
int l = sizeof(conn->local_addr);
|
2002-01-04 04:52:44 -05:00
|
|
|
|
struct SessionHandle *data = conn->data;
|
2002-12-03 05:25:31 -05:00
|
|
|
|
CURLcode result;
|
2001-08-14 04:30:08 -04:00
|
|
|
|
|
2003-11-24 04:04:09 -05:00
|
|
|
|
if(getsockname(conn->sock[FIRSTSOCKET],
|
2001-08-14 04:30:08 -04:00
|
|
|
|
(struct sockaddr *)LOCAL_ADDR, &l) < 0)
|
|
|
|
|
perror("getsockname()");
|
|
|
|
|
|
|
|
|
|
checksum = getpid();
|
|
|
|
|
ret = mk_auth(d, &adat, "ftp", host, checksum);
|
|
|
|
|
if(ret == KDC_PR_UNKNOWN)
|
|
|
|
|
ret = mk_auth(d, &adat, "rcmd", host, checksum);
|
|
|
|
|
if(ret) {
|
2004-11-11 11:34:24 -05:00
|
|
|
|
infof(data, "%s\n", krb_get_err_text(ret));
|
2001-08-14 04:30:08 -04:00
|
|
|
|
return AUTH_CONTINUE;
|
|
|
|
|
}
|
2004-06-24 03:43:48 -04:00
|
|
|
|
|
2000-09-21 04:46:14 -04:00
|
|
|
|
#ifdef HAVE_KRB_GET_OUR_IP_FOR_REALM
|
2007-11-07 04:21:35 -05:00
|
|
|
|
if(krb_get_config_bool("nat_in_use")) {
|
2002-01-04 04:52:44 -05:00
|
|
|
|
struct sockaddr_in *localaddr = (struct sockaddr_in *)LOCAL_ADDR;
|
2001-08-14 04:30:08 -04:00
|
|
|
|
struct in_addr natAddr;
|
|
|
|
|
|
2007-11-07 04:21:35 -05:00
|
|
|
|
if(krb_get_our_ip_for_realm(krb_realmofhost(host),
|
2001-08-14 04:30:08 -04:00
|
|
|
|
&natAddr) != KSUCCESS
|
|
|
|
|
&& krb_get_our_ip_for_realm(NULL, &natAddr) != KSUCCESS)
|
2004-11-11 11:34:24 -05:00
|
|
|
|
infof(data, "Can't get address for realm %s\n",
|
2002-01-04 04:52:44 -05:00
|
|
|
|
krb_realmofhost(host));
|
2001-08-14 04:30:08 -04:00
|
|
|
|
else {
|
2007-11-07 04:21:35 -05:00
|
|
|
|
if(natAddr.s_addr != localaddr->sin_addr.s_addr) {
|
2008-09-23 15:16:56 -04:00
|
|
|
|
char addr_buf[128];
|
|
|
|
|
if(Curl_inet_ntop(AF_INET, natAddr, addr_buf, sizeof(addr_buf)))
|
|
|
|
|
infof(data, "Using NAT IP address (%s) for kerberos 4\n", addr_buf);
|
2001-08-14 04:30:08 -04:00
|
|
|
|
localaddr->sin_addr = natAddr;
|
2000-09-21 04:46:14 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
2001-08-14 04:30:08 -04:00
|
|
|
|
}
|
2000-09-21 04:46:14 -04:00
|
|
|
|
#endif
|
|
|
|
|
|
2007-01-03 18:04:38 -05:00
|
|
|
|
if(Curl_base64_encode(conn->data, (char *)adat.dat, adat.length, &p) < 1) {
|
2002-01-04 04:52:44 -05:00
|
|
|
|
Curl_failf(data, "Out of memory base64-encoding");
|
2001-08-14 04:30:08 -04:00
|
|
|
|
return AUTH_CONTINUE;
|
|
|
|
|
}
|
|
|
|
|
|
2002-12-03 05:25:31 -05:00
|
|
|
|
result = Curl_ftpsendf(conn, "ADAT %s", p);
|
|
|
|
|
|
|
|
|
|
free(p);
|
|
|
|
|
|
|
|
|
|
if(result)
|
2001-10-31 10:06:38 -05:00
|
|
|
|
return -2;
|
2001-08-14 04:30:08 -04:00
|
|
|
|
|
2002-12-03 05:25:31 -05:00
|
|
|
|
if(Curl_GetFTPResponse(&nread, conn, NULL))
|
2001-10-01 18:31:43 -04:00
|
|
|
|
return -1;
|
2001-08-14 04:30:08 -04:00
|
|
|
|
|
2002-01-04 04:52:44 -05:00
|
|
|
|
if(data->state.buffer[0] != '2'){
|
|
|
|
|
Curl_failf(data, "Server didn't accept auth data");
|
2001-08-14 04:30:08 -04:00
|
|
|
|
return AUTH_ERROR;
|
|
|
|
|
}
|
|
|
|
|
|
2002-01-04 04:52:44 -05:00
|
|
|
|
p = strstr(data->state.buffer, "ADAT=");
|
|
|
|
|
if(!p) {
|
|
|
|
|
Curl_failf(data, "Remote host didn't send adat reply");
|
2001-08-14 04:30:08 -04:00
|
|
|
|
return AUTH_ERROR;
|
|
|
|
|
}
|
|
|
|
|
p += 5;
|
2005-02-22 07:10:30 -05:00
|
|
|
|
len = Curl_base64_decode(p, &ptr);
|
|
|
|
|
if(len > sizeof(adat.dat)-1) {
|
|
|
|
|
free(ptr);
|
|
|
|
|
len=0;
|
|
|
|
|
}
|
|
|
|
|
if(!len || !ptr) {
|
2002-01-04 04:52:44 -05:00
|
|
|
|
Curl_failf(data, "Failed to decode base64 from server");
|
2001-08-14 04:30:08 -04:00
|
|
|
|
return AUTH_ERROR;
|
|
|
|
|
}
|
2005-02-22 07:10:30 -05:00
|
|
|
|
memcpy((char *)adat.dat, ptr, len);
|
|
|
|
|
free(ptr);
|
2001-08-14 04:30:08 -04:00
|
|
|
|
adat.length = len;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
ret = krb_rd_safe(adat.dat, adat.length, &d->key,
|
|
|
|
|
(struct sockaddr_in *)hisctladdr,
|
2001-08-14 04:30:08 -04:00
|
|
|
|
(struct sockaddr_in *)myctladdr, &msg_data);
|
2002-01-04 04:52:44 -05:00
|
|
|
|
if(ret) {
|
2004-06-24 03:43:48 -04:00
|
|
|
|
Curl_failf(data, "Error reading reply from server: %s",
|
2002-01-04 04:52:44 -05:00
|
|
|
|
krb_get_err_text(ret));
|
2001-08-14 04:30:08 -04:00
|
|
|
|
return AUTH_ERROR;
|
|
|
|
|
}
|
|
|
|
|
krb_get_int(msg_data.app_data, &cs, 4, 0);
|
2002-01-04 04:52:44 -05:00
|
|
|
|
if(cs - checksum != 1) {
|
|
|
|
|
Curl_failf(data, "Bad checksum returned from server");
|
2001-08-14 04:30:08 -04:00
|
|
|
|
return AUTH_ERROR;
|
|
|
|
|
}
|
|
|
|
|
return AUTH_OK;
|
2000-09-21 04:46:14 -04:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-17 06:12:51 -04:00
|
|
|
|
struct Curl_sec_client_mech Curl_krb4_client_mech = {
|
2000-09-21 04:46:14 -04:00
|
|
|
|
"KERBEROS_V4",
|
|
|
|
|
sizeof(struct krb4_data),
|
|
|
|
|
NULL, /* init */
|
|
|
|
|
krb4_auth,
|
|
|
|
|
NULL, /* end */
|
|
|
|
|
krb4_check_prot,
|
|
|
|
|
krb4_overhead,
|
|
|
|
|
krb4_encode,
|
|
|
|
|
krb4_decode
|
|
|
|
|
};
|
|
|
|
|
|
2002-12-03 05:25:31 -05:00
|
|
|
|
CURLcode Curl_krb_kauth(struct connectdata *conn)
|
2000-09-21 04:46:14 -04:00
|
|
|
|
{
|
2001-08-14 04:30:08 -04:00
|
|
|
|
des_cblock key;
|
|
|
|
|
des_key_schedule schedule;
|
|
|
|
|
KTEXT_ST tkt, tktcopy;
|
|
|
|
|
char *name;
|
|
|
|
|
char *p;
|
|
|
|
|
char passwd[100];
|
2005-02-22 07:20:30 -05:00
|
|
|
|
size_t tmp;
|
2001-08-14 04:30:08 -04:00
|
|
|
|
ssize_t nread;
|
|
|
|
|
int save;
|
2002-12-03 05:25:31 -05:00
|
|
|
|
CURLcode result;
|
2005-02-22 07:10:30 -05:00
|
|
|
|
unsigned char *ptr;
|
2000-09-21 04:46:14 -04:00
|
|
|
|
|
2001-08-17 06:24:59 -04:00
|
|
|
|
save = Curl_set_command_prot(conn, prot_private);
|
2001-08-14 04:30:08 -04:00
|
|
|
|
|
2003-07-19 19:56:33 -04:00
|
|
|
|
result = Curl_ftpsendf(conn, "SITE KAUTH %s", conn->user);
|
2002-12-03 05:25:31 -05:00
|
|
|
|
|
|
|
|
|
if(result)
|
|
|
|
|
return result;
|
2001-08-14 04:30:08 -04:00
|
|
|
|
|
2002-12-03 05:25:31 -05:00
|
|
|
|
result = Curl_GetFTPResponse(&nread, conn, NULL);
|
|
|
|
|
if(result)
|
|
|
|
|
return result;
|
2000-09-21 04:46:14 -04:00
|
|
|
|
|
2002-01-04 04:52:44 -05:00
|
|
|
|
if(conn->data->state.buffer[0] != '3'){
|
2001-08-17 06:24:59 -04:00
|
|
|
|
Curl_set_command_prot(conn, save);
|
2003-01-27 09:19:22 -05:00
|
|
|
|
return CURLE_FTP_WEIRD_SERVER_REPLY;
|
2001-08-14 04:30:08 -04:00
|
|
|
|
}
|
|
|
|
|
|
2001-08-30 18:59:58 -04:00
|
|
|
|
p = strstr(conn->data->state.buffer, "T=");
|
2001-08-14 04:30:08 -04:00
|
|
|
|
if(!p) {
|
2002-01-04 04:52:44 -05:00
|
|
|
|
Curl_failf(conn->data, "Bad reply from server");
|
2001-08-17 06:24:59 -04:00
|
|
|
|
Curl_set_command_prot(conn, save);
|
2002-12-03 05:25:31 -05:00
|
|
|
|
return CURLE_FTP_WEIRD_SERVER_REPLY;
|
2001-08-14 04:30:08 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p += 2;
|
2005-02-22 07:10:30 -05:00
|
|
|
|
tmp = Curl_base64_decode(p, &ptr);
|
2005-02-22 07:20:30 -05:00
|
|
|
|
if(tmp >= sizeof(tkt.dat)) {
|
2005-02-22 07:10:30 -05:00
|
|
|
|
free(ptr);
|
2005-02-22 07:20:30 -05:00
|
|
|
|
tmp=0;
|
2005-02-22 07:10:30 -05:00
|
|
|
|
}
|
2005-02-22 07:20:30 -05:00
|
|
|
|
if(!tmp || !ptr) {
|
2008-01-15 18:19:02 -05:00
|
|
|
|
Curl_failf(conn->data, "Failed to decode base64 in reply");
|
2001-08-17 06:24:59 -04:00
|
|
|
|
Curl_set_command_prot(conn, save);
|
2002-12-03 05:25:31 -05:00
|
|
|
|
return CURLE_FTP_WEIRD_SERVER_REPLY;
|
2001-08-14 04:30:08 -04:00
|
|
|
|
}
|
2005-02-22 07:10:30 -05:00
|
|
|
|
memcpy((char *)tkt.dat, ptr, tmp);
|
|
|
|
|
free(ptr);
|
2001-08-14 04:30:08 -04:00
|
|
|
|
tkt.length = tmp;
|
|
|
|
|
tktcopy.length = tkt.length;
|
2004-06-24 03:43:48 -04:00
|
|
|
|
|
2001-08-30 18:59:58 -04:00
|
|
|
|
p = strstr(conn->data->state.buffer, "P=");
|
2001-08-14 04:30:08 -04:00
|
|
|
|
if(!p) {
|
2002-01-04 04:52:44 -05:00
|
|
|
|
Curl_failf(conn->data, "Bad reply from server");
|
2001-08-17 06:24:59 -04:00
|
|
|
|
Curl_set_command_prot(conn, save);
|
2002-12-03 05:25:31 -05:00
|
|
|
|
return CURLE_FTP_WEIRD_SERVER_REPLY;
|
2001-08-14 04:30:08 -04:00
|
|
|
|
}
|
|
|
|
|
name = p + 2;
|
|
|
|
|
for(; *p && *p != ' ' && *p != '\r' && *p != '\n'; p++);
|
|
|
|
|
*p = 0;
|
|
|
|
|
|
2003-07-21 05:19:48 -04:00
|
|
|
|
des_string_to_key (conn->passwd, &key);
|
2001-08-14 04:30:08 -04:00
|
|
|
|
des_key_sched(&key, schedule);
|
2004-06-24 03:43:48 -04:00
|
|
|
|
|
2003-01-27 09:19:22 -05:00
|
|
|
|
des_pcbc_encrypt((void *)tkt.dat, (void *)tktcopy.dat,
|
2001-08-14 04:30:08 -04:00
|
|
|
|
tkt.length,
|
|
|
|
|
schedule, &key, DES_DECRYPT);
|
2007-11-07 04:21:35 -05:00
|
|
|
|
if(strcmp ((char*)tktcopy.dat + 8,
|
2001-08-14 04:30:08 -04:00
|
|
|
|
KRB_TICKET_GRANTING_TICKET) != 0) {
|
2003-01-27 09:19:22 -05:00
|
|
|
|
afs_string_to_key(passwd,
|
2004-04-28 16:34:04 -04:00
|
|
|
|
krb_realmofhost(conn->host.name),
|
2003-01-27 09:19:22 -05:00
|
|
|
|
&key);
|
|
|
|
|
des_key_sched(&key, schedule);
|
|
|
|
|
des_pcbc_encrypt((void *)tkt.dat, (void *)tktcopy.dat,
|
2001-08-14 04:30:08 -04:00
|
|
|
|
tkt.length,
|
|
|
|
|
schedule, &key, DES_DECRYPT);
|
|
|
|
|
}
|
|
|
|
|
memset(key, 0, sizeof(key));
|
|
|
|
|
memset(schedule, 0, sizeof(schedule));
|
|
|
|
|
memset(passwd, 0, sizeof(passwd));
|
2007-01-03 18:04:38 -05:00
|
|
|
|
if(Curl_base64_encode(conn->data, (char *)tktcopy.dat, tktcopy.length, &p)
|
|
|
|
|
< 1) {
|
2001-12-11 08:13:01 -05:00
|
|
|
|
failf(conn->data, "Out of memory base64-encoding.");
|
2001-08-17 06:24:59 -04:00
|
|
|
|
Curl_set_command_prot(conn, save);
|
2002-12-03 05:25:31 -05:00
|
|
|
|
return CURLE_OUT_OF_MEMORY;
|
2001-08-14 04:30:08 -04:00
|
|
|
|
}
|
|
|
|
|
memset (tktcopy.dat, 0, tktcopy.length);
|
|
|
|
|
|
2002-12-03 05:25:31 -05:00
|
|
|
|
result = Curl_ftpsendf(conn, "SITE KAUTH %s %s", name, p);
|
2001-08-14 04:30:08 -04:00
|
|
|
|
free(p);
|
2002-12-03 05:25:31 -05:00
|
|
|
|
if(result)
|
|
|
|
|
return result;
|
|
|
|
|
|
|
|
|
|
result = Curl_GetFTPResponse(&nread, conn, NULL);
|
|
|
|
|
if(result)
|
|
|
|
|
return result;
|
2001-08-17 06:24:59 -04:00
|
|
|
|
Curl_set_command_prot(conn, save);
|
2002-12-03 05:25:31 -05:00
|
|
|
|
|
|
|
|
|
return CURLE_OK;
|
2000-09-21 04:46:14 -04:00
|
|
|
|
}
|
|
|
|
|
|
2003-12-02 08:27:29 -05:00
|
|
|
|
#endif /* HAVE_KRB4 */
|
2002-06-11 07:13:01 -04:00
|
|
|
|
#endif /* CURL_DISABLE_FTP */
|