Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
df19c4b3
...
df19c4b3f9b930269af9ed1701a4bfee2cabe7a7
authored
2002-02-11 08:36:36 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Use imap4d_gss_userok() to check if the principal is allowed to use
a given mailbox.
1 parent
dd73a14f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
57 additions
and
3 deletions
imap4d/auth_gss.c
imap4d/auth_gss.c
View file @
df19c4b
...
...
@@ -22,6 +22,7 @@
#include <netinet/in.h>
#include <krb5.h>
#include <gssapi/gssapi.h>
#include <gssapi/gssapi_generic.h>
...
...
@@ -55,13 +56,31 @@ display_status_1 (char *m, OM_uint32 code, int type)
while
(
msg_ctx
);
}
void
static
void
display_status
(
char
*
msg
,
OM_uint32
maj_stat
,
OM_uint32
min_stat
)
{
display_status_1
(
msg
,
maj_stat
,
GSS_C_GSS_CODE
);
display_status_1
(
msg
,
min_stat
,
GSS_C_MECH_CODE
);
}
static
int
imap4d_gss_userok
(
gss_buffer_t
client_name
,
char
*
name
)
{
int
rc
=
-
1
;
krb5_principal
p
;
krb5_context
kcontext
;
krb5_init_context
(
&
kcontext
);
if
(
krb5_parse_name
(
kcontext
,
client_name
->
value
,
&
p
)
!=
0
)
return
-
1
;
if
(
krb5_kuserok
(
kcontext
,
p
,
name
))
rc
=
0
;
else
rc
=
1
;
krb5_free_principal
(
kcontext
,
p
);
return
rc
;
}
int
auth_gssapi
(
struct
imap4d_command
*
command
,
char
**
username
)
...
...
@@ -78,6 +97,8 @@ auth_gssapi (struct imap4d_command *command, char **username)
size_t
size
;
gss_name_t
server_name
;
gss_qop_t
quality
;
gss_name_t
client
;
gss_buffer_desc
client_name
;
/* Obtain server credentials. RFC 1732 states, that
"The server must issue a ready response with no data and pass the
...
...
@@ -134,7 +155,7 @@ auth_gssapi (struct imap4d_command *command, char **username)
server_creds
,
&
tokbuf
,
GSS_C_NO_CHANNEL_BINDINGS
,
NULL
,
&
client
,
&
mech_type
,
&
outbuf
,
&
cflags
,
...
...
@@ -186,7 +207,7 @@ auth_gssapi (struct imap4d_command *command, char **username)
token_str
=
imap4d_readline_ex
(
ifile
);
util_base64_decode
(
token_str
,
strlen
(
token_str
),
&
tokbuf
.
value
,
&
tokbuf
.
length
);
(
unsigned
char
**
)
&
tokbuf
.
value
,
&
tokbuf
.
length
);
free
(
token_str
);
gss_unwrap
(
&
min_stat
,
context
,
&
tokbuf
,
&
outbuf
,
&
cflags
,
&
quality
);
...
...
@@ -214,6 +235,39 @@ auth_gssapi (struct imap4d_command *command, char **username)
*
username
=
strdup
((
char
*
)
outbuf
.
value
+
4
);
gss_release_buffer
(
&
min_stat
,
&
outbuf
);
maj_stat
=
gss_display_name
(
&
min_stat
,
client
,
&
client_name
,
&
mech_type
);
if
(
maj_stat
!=
GSS_S_COMPLETE
)
{
display_status
(
"get client name"
,
maj_stat
,
min_stat
);
maj_stat
=
gss_delete_sec_context
(
&
min_stat
,
&
context
,
&
outbuf
);
gss_release_buffer
(
&
min_stat
,
&
outbuf
);
free
(
*
username
);
util_finish
(
command
,
RESP_NO
,
"GSSAPI authentication failed"
);
return
1
;
}
if
(
imap4d_gss_userok
(
&
client_name
,
*
username
))
{
syslog
(
LOG_NOTICE
,
"GSSAPI user %s is NOT authorized as %s"
,
client_name
.
value
,
*
username
);
util_finish
(
command
,
RESP_NO
,
"GSSAPI user %s is NOT authorized as %s"
,
client_name
.
value
,
*
username
);
maj_stat
=
gss_delete_sec_context
(
&
min_stat
,
&
context
,
&
outbuf
);
gss_release_buffer
(
&
min_stat
,
&
outbuf
);
gss_release_buffer
(
&
min_stat
,
&
client_name
);
free
(
*
username
);
return
1
;
}
else
{
syslog
(
LOG_NOTICE
,
"GSSAPI user %s is authorized as %s"
,
client_name
.
value
,
*
username
);
}
gss_release_buffer
(
&
min_stat
,
&
client_name
);
maj_stat
=
gss_delete_sec_context
(
&
min_stat
,
&
context
,
&
outbuf
);
gss_release_buffer
(
&
min_stat
,
&
outbuf
);
util_finish
(
command
,
RESP_OK
,
...
...
Please
register
or
sign in
to post a comment