Skip to content

Commit c6847f0

Browse files
scottmayhewsimo5
authored andcommitted
Add an option for minimum lifetime
It's possible for gssproxy to return a cached credential with a very small remaining lifetime. This can be problematic for NFS clients since it requires a round trip to the NFS server to establish a GSS context. Add a min_lifetime option that represents the lowest value that the lifetime of the cached credential can be. Any lower than that, and gp_check_cred() returns GSS_S_CREDENTIALS_EXPIRED, so that gp_add_krb5_creds() is forced to try to obtain a new credential. Signed-off-by: Scott Mayhew <[email protected]>
1 parent daaa233 commit c6847f0

File tree

5 files changed

+39
-2
lines changed

5 files changed

+39
-2
lines changed

examples/99-nfs-client.conf.in

+1
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
allow_any_uid = yes
88
trusted = yes
99
euid = 0
10+
min_lifetime = 60

man/gssproxy.conf.5.xml

+15
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,21 @@
331331
</listitem>
332332
</varlistentry>
333333

334+
<varlistentry>
335+
<term>min_lifetime (integer)</term>
336+
<listitem>
337+
<para>Minimum lifetime of a cached credential, in seconds.</para>
338+
<para>If non-zero, when gssproxy is deciding whether to use
339+
a cached credential, it will compare the lifetime of the
340+
cached credential to this value. If the lifetime of the
341+
cached credential is lower, gssproxy will treat the cached
342+
credential as expired and will attempt to obtain a new
343+
credential.
344+
</para>
345+
<para>Default: min_lifetime = 15</para>
346+
</listitem>
347+
</varlistentry>
348+
334349
<varlistentry>
335350
<term>program (string)</term>
336351
<listitem>

src/gp_config.c

+12
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ struct gp_flag_def flag_names[] = {
3232

3333
#define DEFAULT_FILTERED_FLAGS GSS_C_DELEG_FLAG
3434
#define DEFAULT_ENFORCED_FLAGS 0
35+
#define DEFAULT_MIN_LIFETIME 15
3536

3637
static void free_str_array(const char ***a, int *count)
3738
{
@@ -538,6 +539,17 @@ static int load_services(struct gp_config *cfg, struct gp_ini_context *ctx)
538539
goto done;
539540
}
540541
}
542+
543+
cfg->svcs[n]->min_lifetime = DEFAULT_MIN_LIFETIME;
544+
ret = gp_config_get_int(ctx, secname, "min_lifetime", &valnum);
545+
if (ret == 0) {
546+
if (valnum >= 0) {
547+
cfg->svcs[n]->min_lifetime = valnum;
548+
} else {
549+
GPDEBUG("Invalid value '%d' for min_lifetime in [%s], ignoring.\n",
550+
valnum, secname);
551+
}
552+
}
541553
}
542554
safefree(secname);
543555
}

src/gp_creds.c

+10-2
Original file line numberDiff line numberDiff line change
@@ -492,6 +492,7 @@ static int gp_get_cred_environment(struct gp_call_ctx *gpcall,
492492
}
493493

494494
static uint32_t gp_check_cred(uint32_t *min,
495+
struct gp_service *svc,
495496
gss_cred_id_t in_cred,
496497
gssx_name *desired_name,
497498
gss_cred_usage_t cred_usage)
@@ -563,7 +564,14 @@ static uint32_t gp_check_cred(uint32_t *min,
563564
if (lifetime == 0) {
564565
ret_maj = GSS_S_CREDENTIALS_EXPIRED;
565566
} else {
566-
ret_maj = GSS_S_COMPLETE;
567+
if (svc->min_lifetime && lifetime < svc->min_lifetime) {
568+
GPDEBUG("%s: lifetime (%u) less than min_lifetime (%u) "
569+
"for service \"%s\" - returning\n",
570+
__func__, lifetime, svc->min_lifetime, svc->name);
571+
ret_maj = GSS_S_CREDENTIALS_EXPIRED;
572+
} else {
573+
ret_maj = GSS_S_COMPLETE;
574+
}
567575
}
568576

569577
done:
@@ -622,7 +630,7 @@ uint32_t gp_add_krb5_creds(uint32_t *min,
622630
* function completely */
623631

624632
/* just check if it is a valid krb5 cred */
625-
ret_maj = gp_check_cred(&ret_min, in_cred, desired_name, cred_usage);
633+
ret_maj = gp_check_cred(&ret_min, gpcall->service, in_cred, desired_name, cred_usage);
626634
if (ret_maj == GSS_S_COMPLETE) {
627635
return GSS_S_COMPLETE;
628636
} else if (ret_maj == GSS_S_CREDENTIALS_EXPIRED ||

src/gp_proxy.h

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ struct gp_service {
4545
gss_cred_usage_t cred_usage;
4646
uint32_t filter_flags;
4747
uint32_t enforce_flags;
48+
uint32_t min_lifetime;
4849
char *program;
4950

5051
uint32_t mechs;

0 commit comments

Comments
 (0)