Commit d45f7dfd authored by Bruce Momjian's avatar Bruce Momjian

Update kerberos patch

parent 4f326011
This diff is collapsed.
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
# #
# #
# IDENTIFICATION # IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.73 2000/05/27 03:58:18 momjian Exp $ # $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.74 2000/05/27 04:13:04 momjian Exp $
# #
# NOTES # NOTES
# Essentially all Postgres make files include this file and use the # Essentially all Postgres make files include this file and use the
...@@ -120,7 +120,7 @@ ENFORCE_ALIGNMENT= true ...@@ -120,7 +120,7 @@ ENFORCE_ALIGNMENT= true
# Set KRBVERS to "4" for Kerberos v4, "5" for Kerberos v5. # Set KRBVERS to "4" for Kerberos v4, "5" for Kerberos v5.
# XXX Edit the default Kerberos variables below! # XXX Edit the default Kerberos variables below!
# #
#KRBVERS= 5 #KRBVERS=5
# Globally pass Kerberos file locations. # Globally pass Kerberos file locations.
# these are used in the postmaster and all libpq applications. # these are used in the postmaster and all libpq applications.
...@@ -132,9 +132,9 @@ ENFORCE_ALIGNMENT= true ...@@ -132,9 +132,9 @@ ENFORCE_ALIGNMENT= true
# PG_KRB_SRVTAB is the location of the server's keytab file. # PG_KRB_SRVTAB is the location of the server's keytab file.
# #
ifdef KRBVERS ifdef KRBVERS
KRBINCS= -I/usr/athena/include KRBINCS= -I/usr/krb5/include
KRBLIBS= -L/usr/athena/lib KRBLIBS= -L/usr/krb5/lib
KRBFLAGS+= $(KRBINCS) -DPG_KRB_SRVNAM='"postgres_dbms"' KRBFLAGS+= $(KRBINCS) -DPG_KRB_SRVNAM='"postgres"'
ifeq ($(KRBVERS), 4) ifeq ($(KRBVERS), 4)
KRBFLAGS+= -DKRB4 KRBFLAGS+= -DKRB4
KRBFLAGS+= -DPG_KRB_SRVTAB='"/etc/srvtab"' KRBFLAGS+= -DPG_KRB_SRVTAB='"/etc/srvtab"'
...@@ -142,8 +142,8 @@ KRBLIBS+= -lkrb -ldes ...@@ -142,8 +142,8 @@ KRBLIBS+= -lkrb -ldes
else else
ifeq ($(KRBVERS), 5) ifeq ($(KRBVERS), 5)
KRBFLAGS+= -DKRB5 KRBFLAGS+= -DKRB5
KRBFLAGS+= -DPG_KRB_SRVTAB='"FILE:/krb5/srvtab.postgres"' KRBFLAGS+= -DPG_KRB_SRVTAB='"FILE:/usr/local/postgres/krb5.keytab"'
KRBLIBS+= -lkrb5 -lcrypto -lcom_err -lisode KRBLIBS+= -lkrb5 -lcrypto -lcom_err
endif endif
endif endif
endif endif
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.46 2000/05/27 03:58:19 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/libpq/auth.c,v 1.47 2000/05/27 04:13:05 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -149,7 +149,8 @@ pg_krb4_recvauth(Port *port) ...@@ -149,7 +149,8 @@ pg_krb4_recvauth(Port *port)
*---------------------------------------------------------------- *----------------------------------------------------------------
*/ */
#include "krb5/krb5.h" #include <krb5.h>
#include <com_err.h>
/* /*
* pg_an_to_ln -- return the local name corresponding to an authentication * pg_an_to_ln -- return the local name corresponding to an authentication
...@@ -174,130 +175,134 @@ pg_an_to_ln(char *aname) ...@@ -174,130 +175,134 @@ pg_an_to_ln(char *aname)
return aname; return aname;
} }
/* /*
* pg_krb5_recvauth -- server routine to receive authentication information * Various krb5 state which is not connection specfic, and a flag to
* from the client * indicate whether we have initialised it yet.
*
* We still need to compare the username obtained from the client's setup
* packet to the authenticated name, as described in pg_krb4_recvauth. This
* is a bit more problematic in v5, as described above in pg_an_to_ln.
*
* In addition, as described above in pg_krb5_sendauth, we still need to
* canonicalize the server name v4-style before constructing a principal
* from it. Again, this is kind of iffy.
*
* Finally, we need to tangle with the fact that v5 doesn't let you explicitly
* set server keytab file names -- you have to feed lower-level routines a
* function to retrieve the contents of a keytab, along with a single argument
* that allows them to open the keytab. We assume that a server keytab is
* always a real file so we can allow people to specify their own filenames.
* (This is important because the POSTGRES keytab needs to be readable by
* non-root users/groups; the v4 tools used to force you do dump a whole
* host's worth of keys into a file, effectively forcing you to use one file,
* but kdb5_edit allows you to select which principals to dump. Yay!)
*/ */
static int pg_krb5_initialised;
static krb5_context pg_krb5_context;
static krb5_keytab pg_krb5_keytab;
static krb5_principal pg_krb5_server;
static int static int
pg_krb5_recvauth(Port *port) pg_krb5_init(void)
{ {
char servbuf[MAXHOSTNAMELEN + 1 + krb5_error_code retval;
sizeof(PG_KRB_SRVNAM)];
char *hostp,
*kusername = (char *) NULL;
krb5_error_code code;
krb5_principal client,
server;
krb5_address sender_addr;
krb5_rdreq_key_proc keyproc = (krb5_rdreq_key_proc) NULL;
krb5_pointer keyprocarg = (krb5_pointer) NULL;
/* if (pg_krb5_initialised)
* Set up server side -- since we have no ticket file to make this return STATUS_OK;
* easy, we construct our own name and parse it. See note on
* canonicalization above. retval = krb5_init_context(&pg_krb5_context);
*/ if (retval) {
strcpy(servbuf, PG_KRB_SRVNAM);
*(hostp = servbuf + (sizeof(PG_KRB_SRVNAM) - 1)) = '/';
if (gethostname(++hostp, MAXHOSTNAMELEN) < 0)
strcpy(hostp, "localhost");
if (hostp = strchr(hostp, '.'))
*hostp = '\0';
if (code = krb5_parse_name(servbuf, &server))
{
snprintf(PQerrormsg, PQERRORMSG_LENGTH, snprintf(PQerrormsg, PQERRORMSG_LENGTH,
"pg_krb5_recvauth: Kerberos error %d in krb5_parse_name\n", code); "pg_krb5_init: krb5_init_context returned"
com_err("pg_krb5_recvauth", code, "in krb5_parse_name"); " Kerberos error %d\n", retval);
com_err("postgres", retval, "while initializing krb5");
return STATUS_ERROR; return STATUS_ERROR;
} }
/* retval = krb5_kt_resolve(pg_krb5_context, PG_KRB_SRVTAB, &pg_krb5_keytab);
* krb5_sendauth needs this to verify the address in the client if (retval) {
* authenticator. snprintf(PQerrormsg, PQERRORMSG_LENGTH,
*/ "pg_krb5_init: krb5_kt_resolve returned"
sender_addr.addrtype = port->raddr.in.sin_family; " Kerberos error %d\n", retval);
sender_addr.length = sizeof(port->raddr.in.sin_addr); com_err("postgres", retval, "while resolving keytab file %s",
sender_addr.contents = (krb5_octet *) & (port->raddr.in.sin_addr); PG_KRB_SRVTAB);
krb5_free_context(pg_krb5_context);
if (strcmp(PG_KRB_SRVTAB, "")) return STATUS_ERROR;
{
keyproc = krb5_kt_read_service_key;
keyprocarg = PG_KRB_SRVTAB;
} }
if (code = krb5_recvauth((krb5_pointer) & port->sock, retval = krb5_sname_to_principal(pg_krb5_context, NULL, PG_KRB_SRVNAM,
PG_KRB5_VERSION, KRB5_NT_SRV_HST, &pg_krb5_server);
server, if (retval) {
&sender_addr,
(krb5_pointer) NULL,
keyproc,
keyprocarg,
(char *) NULL,
(krb5_int32 *) NULL,
&client,
(krb5_ticket **) NULL,
(krb5_authenticator **) NULL))
{
snprintf(PQerrormsg, PQERRORMSG_LENGTH, snprintf(PQerrormsg, PQERRORMSG_LENGTH,
"pg_krb5_recvauth: Kerberos error %d in krb5_recvauth\n", code); "pg_krb5_init: krb5_sname_to_principal returned"
com_err("pg_krb5_recvauth", code, "in krb5_recvauth"); " Kerberos error %d\n", retval);
krb5_free_principal(server); com_err("postgres", retval,
"while getting server principal for service %s",
PG_KRB_SRVTAB);
krb5_kt_close(pg_krb5_context, pg_krb5_keytab);
krb5_free_context(pg_krb5_context);
return STATUS_ERROR; return STATUS_ERROR;
} }
krb5_free_principal(server);
pg_krb5_initialised = 1;
return STATUS_OK;
}
/*
* pg_krb5_recvauth -- server routine to receive authentication information
* from the client
*
* We still need to compare the username obtained from the client's setup
* packet to the authenticated name, as described in pg_krb4_recvauth. This
* is a bit more problematic in v5, as described above in pg_an_to_ln.
*
* We have our own keytab file because postgres is unlikely to run as root,
* and so cannot read the default keytab.
*/
static int
pg_krb5_recvauth(Port *port)
{
krb5_error_code retval;
int ret;
krb5_auth_context auth_context = NULL;
krb5_ticket *ticket;
char *kusername;
ret = pg_krb5_init();
if (ret != STATUS_OK)
return ret;
retval = krb5_recvauth(pg_krb5_context, &auth_context,
(krb5_pointer)&port->sock, PG_KRB_SRVNAM,
pg_krb5_server, 0, pg_krb5_keytab, &ticket);
if (retval) {
snprintf(PQerrormsg, PQERRORMSG_LENGTH,
"pg_krb5_recvauth: krb5_recvauth returned"
" Kerberos error %d\n", retval);
com_err("postgres", retval, "from krb5_recvauth");
return STATUS_ERROR;
}
/* /*
* The "client" structure comes out of the ticket and is therefore * The "client" structure comes out of the ticket and is therefore
* authenticated. Use it to check the username obtained from the * authenticated. Use it to check the username obtained from the
* postmaster startup packet. * postmaster startup packet.
*
* I have no idea why this is considered necessary.
*/ */
if ((code = krb5_unparse_name(client, &kusername))) retval = krb5_unparse_name(pg_krb5_context,
{ ticket->enc_part2->client, &kusername);
if (retval) {
snprintf(PQerrormsg, PQERRORMSG_LENGTH, snprintf(PQerrormsg, PQERRORMSG_LENGTH,
"pg_krb5_recvauth: Kerberos error %d in krb5_unparse_name\n", code); "pg_krb5_recvauth: krb5_unparse_name returned"
com_err("pg_krb5_recvauth", code, "in krb5_unparse_name"); " Kerberos error %d\n", retval);
krb5_free_principal(client); com_err("postgres", retval, "while unparsing client name");
return STATUS_ERROR; krb5_free_ticket(pg_krb5_context, ticket);
} krb5_auth_con_free(pg_krb5_context, auth_context);
krb5_free_principal(client);
if (!kusername)
{
snprintf(PQerrormsg, PQERRORMSG_LENGTH,
"pg_krb5_recvauth: could not decode username\n");
fputs(PQerrormsg, stderr);
pqdebug("%s", PQerrormsg);
return STATUS_ERROR; return STATUS_ERROR;
} }
kusername = pg_an_to_ln(kusername); kusername = pg_an_to_ln(kusername);
if (strncmp(username, kusername, SM_USER)) if (strncmp(port->user, kusername, SM_USER))
{ {
snprintf(PQerrormsg, PQERRORMSG_LENGTH, snprintf(PQerrormsg, PQERRORMSG_LENGTH,
"pg_krb5_recvauth: name \"%s\" != \"%s\"\n", port->user, kusername); "pg_krb5_recvauth: user name \"%s\" != krb5 name \"%s\"\n",
fputs(PQerrormsg, stderr); port->user, kusername);
pqdebug("%s", PQerrormsg); ret = STATUS_ERROR;
pfree(kusername);
return STATUS_ERROR;
} }
pfree(kusername); else
return STATUS_OK; ret = STATUS_OK;
krb5_free_ticket(pg_krb5_context, ticket);
krb5_auth_con_free(pg_krb5_context, auth_context);
free(kusername);
return ret;
} }
#else #else
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
# Copyright (c) 1994, Regents of the University of California # Copyright (c) 1994, Regents of the University of California
# #
# IDENTIFICATION # IDENTIFICATION
# $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.56 2000/05/27 03:58:20 momjian Exp $ # $Header: /cvsroot/pgsql/src/interfaces/libpq/Attic/Makefile.in,v 1.57 2000/05/27 04:13:05 momjian Exp $
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
...@@ -21,6 +21,7 @@ CFLAGS+= -DFRONTEND ...@@ -21,6 +21,7 @@ CFLAGS+= -DFRONTEND
ifdef KRBVERS ifdef KRBVERS
CFLAGS+= $(KRBFLAGS) CFLAGS+= $(KRBFLAGS)
SHLIB_LINK += $(KRBLIBS)
endif endif
OBJS= fe-auth.o fe-connect.o fe-exec.o fe-misc.o fe-print.o fe-lobj.o \ OBJS= fe-auth.o fe-connect.o fe-exec.o fe-misc.o fe-print.o fe-lobj.o \
......
This diff is collapsed.
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $Id: libpq-int.h,v 1.25 2000/05/27 03:58:20 momjian Exp $ * $Id: libpq-int.h,v 1.26 2000/05/27 04:13:05 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -50,6 +50,7 @@ ...@@ -50,6 +50,7 @@
* POSTGRES backend dependent Constants. * POSTGRES backend dependent Constants.
*/ */
#define PQERRORMSG_LENGTH 1024
#define CMDSTATUS_LEN 40 #define CMDSTATUS_LEN 40
/* /*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment