Displaying 11 results from an estimated 11 matches for "gss_name_t".
2003 Sep 30
0
Samba 3.0.0 compile problems (with gssapi headers)
...gssapi/gssapi.h:87: warning: `OM_uint32' previously
declared here
/usr/local/heimdal/include/gssapi.h:52: warning: redefinition of
`gss_uint32'
/usr/include/gssapi/gssapi.h:64: warning: `gss_uint32' previously
declared here
/usr/local/heimdal/include/gssapi.h:64: conflicting types for
`gss_name_t'
/usr/include/gssapi/gssapi.h:57: previous declaration of `gss_name_t'
... [cut] many many more lines of the same type [cut] ...
make: *** [dynconfig.o] Error 1
There are other gssapi libraries in the box from the SUNWhea SunOS
Header Files package that I cannot de-install without breaki...
2005 Dec 30
1
Compile problem on FreeBSD 6.0-STABLE
...s/mech-gssapi.Tpo"
".deps/mech-gssapi.Po"; else rm -f ".deps/mech-gssapi.Tpo"; exit 1; fi
mech-gssapi.c:30:27: gssapi/gssapi.h: No such file or directory
mech-gssapi.c:42: error: syntax error before "gss_ctx_id_t"
mech-gssapi.c:51: error: syntax error before "gss_name_t"
mech-gssapi.c:58: error: syntax error before "OM_uint32"
[snipped]
mech-gssapi.c:387: error: structure has no member named `authz_name'
*** Error code 1
Stop in /usr/local/src/dovecot/dovecot-1.0.alpha5/src/auth.
*** Error code 1
Stop in /usr/local/src/dovecot/dovecot-1.0.al...
2006 Feb 27
2
Bug in Kerberos support for openssh.
...e was.
I did manage to hack the thing to work - I first hacked libgssapi.so to
include a new function:
OM_uint32 KRB5_CALLCONV
gss_hack_ssh_to_fix_stupid_bug(minor_status,
input_name,
output_name)
OM_uint32 * minor_status;
gss_name_t input_name;
gss_name_t * output_name;
{
gss_union_name_t union_name;
union_name = (gss_union_name_t) input_name;
*output_name = union_name->mech_name;
return 0;
}
and then hacked gss-serv.c to have this:
#if 0
/* FIXME(eric) - thi...
2004 Mar 04
4
Solaris 9 --with-krb5 problems
Hi,
I am running configure with the option --with-krb5=/opt/local which is
where I have heimdal installed. The problem is that after running make,
it still tries to use the include files from SUN that are in /usr/ and this
screws up the compile.
I can compile samba just fine using --without-krb5.
I have already tried:
setenv CFLAGS "-L/opt/local/lib"
setenv CPPFLAGS
2006 Feb 10
0
Bug in gssapi support
...+ src/auth/mech-gssapi.c
@@ -138,7 +138,7 @@ static OM_uint32 obtain_service_credenti
return major_status;
}
- gss_release_name(&minor_status, gss_principal);
+ gss_release_name(&minor_status, &gss_principal);
return major_status;
}
as gss_release_name takes a pointer to a gss_name_t as second arg.
cheers
mark
2006 Sep 18
1
Incorrect GSSAPI Service Name for POP3
...iff -ruN dovecot-1.0.beta8/src/auth/mech-gssapi.c dovecot-1.0.beta8.new/src/auth/mech-gssapi.c
--- dovecot-1.0.beta8/src/auth/mech-gssapi.c 2006-09-18 17:35:02.000000000 -0500
+++ dovecot-1.0.beta8.new/src/auth/mech-gssapi.c 2006-09-18 17:37:46.000000000 -0500
@@ -101,7 +101,11 @@
gss_name_t gss_principal;
principal_name = t_str_new(128);
- str_append(principal_name, t_str_lcase(request->service));
+ if(strcmp(request->service, "POP3") == 0) {
+ str_append(principal_name, "pop");
+ } else {
+ str_append(p...
2005 Oct 19
2
[PATCH] Support for GSSAPI SASL Mechanism
...stpid.h"
+
+#ifdef MECH_GSSAPI
+
+#include <gssapi/gssapi.h>
+
+struct gssapi_auth_request {
+ struct auth_request auth_request;
+ gss_ctx_id_t gss_ctx;
+ gss_cred_id_t service_cred;
+
+ enum {
+ GSS_STATE_SEC_CONTEXT,
+ GSS_STATE_WRAP,
+ GSS_STATE_UNWRAP
+ } sasl_gssapi_state;
+
+ gss_name_t src_name;
+
+ pool_t pool;
+};
+
+static void auth_request_log_gss_error(struct auth_request *request, OM_uint32 status_value, int status_type, const char *description)
+{
+ OM_uint32 message_context = 0;
+ OM_uint32 major_status, minor_status;
+ gss_buffer_desc status_string;
+
+ do {
+ major_s...
2008 Aug 12
2
[PATCH] Allow GSSAPI to work with multihomed hosts
..., with dovecot providing gssapi auth to thunderbird on
both linux (mit kerb 1.6) and windows (sspi)..
--- dovecot-1.0.13/src/auth/mech-gssapi.c 2007-12-11 11:52:08.000000000 -0700
+++ dovecot-1.0.13-jgg/src/auth/mech-gssapi.c 2008-08-11 23:52:15.000000000 -0600
@@ -101,6 +101,13 @@
gss_name_t gss_principal;
const char *service_name;
+ if (strcmp(request->auth->gssapi_hostname,"$ALL") == 0) {
+ auth_request_log_info(request, "gssapi",
+ "Using all keytab entires");
+ *ret = GSS_C_NO_CREDEN...
2014 Jul 15
3
GSSAPI
If I am trying to build OpenSSH 6.6 with Kerberos GSSAPI support, do I still need to get Simon Wilkinson's patches?
---
Scott Neugroschl | XYPRO Technology Corporation
4100 Guardian Street | Suite 100 |Simi Valley, CA 93063 | Phone 805 583-2874|Fax 805 583-0124 |
2007 Mar 27
3
Building problem on FreeBSD with GSSAPI
I have error while compiling dovecot with GSSAPI under FreeBSD 6.2:
Is this dovecot-related or not?
cc -std=gnu99 -O2 -fno-strict-aliasing -pipe -Wall -W
-Wmissing-prototypes -Wmissing-declarations -Wpointer-arith
-Wchar-subscripts -Wformat=2 -Wbad-function-cast -o dovecot-auth auth.o
auth-cache.o auth-client-connection.o auth-master-connection.o
auth-master-listener.o auth-module.o
2003 Aug 10
9
updated gssapi diff
...sh_gssapi_client *);
+ int (*userok) (ssh_gssapi_client *, char *);
+ int (*localname) (ssh_gssapi_client *, char **);
+ void (*storecreds) (ssh_gssapi_client *);
+} ssh_gssapi_mech;
+
+typedef struct {
+ OM_uint32 major; /* both */
+ OM_uint32 minor; /* both */
+ gss_ctx_id_t context; /* both */
+ gss_name_t name; /* both */
+ gss_OID oid; /* client */
+ gss_cred_id_t creds; /* server */
+ gss_name_t client; /* server */
+ gss_cred_id_t client_creds; /* server */
+} Gssctxt;
+
+extern ssh_gssapi_mech *supported_mechs[];
+
+int ssh_gssapi_check_oid(Gssctxt *ctx, void *data, size_t len);
+void ssh_gssa...