1999-11-24 03:00:09 +08:00
|
|
|
/* bind.c - ldbm backend bind and unbind routines */
|
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/*
|
2003-01-04 04:20:47 +08:00
|
|
|
* Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
|
1999-11-24 03:00:09 +08:00
|
|
|
* COPYING RESTRICTIONS APPLY, see COPYRIGHT file
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include <ac/krb.h>
|
|
|
|
#include <ac/socket.h>
|
|
|
|
#include <ac/string.h>
|
|
|
|
#include <ac/unistd.h>
|
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
|
2002-05-01 09:04:57 +08:00
|
|
|
#include <lber_pvt.h>
|
1999-11-24 03:00:09 +08:00
|
|
|
#include <lutil.h>
|
|
|
|
|
1999-12-10 07:05:15 +08:00
|
|
|
int passwd_extop(
|
1999-12-16 07:22:47 +08:00
|
|
|
Connection *conn, Operation *op,
|
2003-02-16 14:15:28 +08:00
|
|
|
struct berval *reqoid,
|
1999-12-10 12:52:32 +08:00
|
|
|
struct berval *reqdata,
|
1999-12-16 07:22:47 +08:00
|
|
|
char **rspoid,
|
1999-12-10 12:52:32 +08:00
|
|
|
struct berval **rspdata,
|
|
|
|
LDAPControl ***rspctrls,
|
2000-05-22 11:46:57 +08:00
|
|
|
const char **text,
|
2002-01-14 09:43:17 +08:00
|
|
|
BerVarray *refs )
|
1999-12-08 12:37:59 +08:00
|
|
|
{
|
2002-06-12 06:56:47 +08:00
|
|
|
Backend *be;
|
1999-12-08 12:37:59 +08:00
|
|
|
int rc;
|
|
|
|
|
1999-12-16 07:22:47 +08:00
|
|
|
assert( reqoid != NULL );
|
2003-02-16 14:15:28 +08:00
|
|
|
assert( ber_bvcmp( &slap_EXOP_MODIFY_PASSWD, reqoid ) == 0 );
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2001-12-24 23:11:01 +08:00
|
|
|
if( op->o_dn.bv_len == 0 ) {
|
|
|
|
*text = "only authenticated users may change passwords";
|
1999-12-08 12:37:59 +08:00
|
|
|
return LDAP_STRONG_AUTH_REQUIRED;
|
|
|
|
}
|
|
|
|
|
2002-06-12 06:56:47 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( &conn->c_mutex );
|
|
|
|
be = conn->c_authz_backend;
|
|
|
|
ldap_pvt_thread_mutex_unlock( &conn->c_mutex );
|
|
|
|
|
2002-06-12 08:13:29 +08:00
|
|
|
if( be && !be->be_extended ) {
|
2002-05-01 09:04:57 +08:00
|
|
|
*text = "operation not supported for current user";
|
|
|
|
return LDAP_UNWILLING_TO_PERFORM;
|
|
|
|
}
|
1999-12-16 07:22:47 +08:00
|
|
|
|
2002-05-01 09:04:57 +08:00
|
|
|
{
|
2003-02-16 20:22:06 +08:00
|
|
|
rc = backend_check_restrictions( be, conn, op,
|
|
|
|
(struct berval *)&slap_EXOP_MODIFY_PASSWD, text );
|
2002-05-01 09:04:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if( rc != LDAP_SUCCESS ) {
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
2002-06-12 08:13:29 +08:00
|
|
|
if( be == NULL ) {
|
|
|
|
#ifdef HAVE_CYRUS_SASL
|
|
|
|
rc = slap_sasl_setpass( conn, op,
|
|
|
|
reqoid, reqdata,
|
|
|
|
rspoid, rspdata, rspctrls,
|
|
|
|
text );
|
|
|
|
#else
|
|
|
|
*text = "no authz backend";
|
|
|
|
rc = LDAP_OTHER;
|
|
|
|
#endif
|
|
|
|
|
2002-11-22 08:56:20 +08:00
|
|
|
#ifndef SLAPD_MULTIMASTER
|
|
|
|
/* This does not apply to multi-master case */
|
2002-06-12 08:13:29 +08:00
|
|
|
} else if( be->be_update_ndn.bv_len ) {
|
2002-05-01 09:04:57 +08:00
|
|
|
/* we SHOULD return a referral in this case */
|
2002-06-12 06:56:47 +08:00
|
|
|
*refs = referral_rewrite( be->be_update_refs,
|
2002-05-01 09:04:57 +08:00
|
|
|
NULL, NULL, LDAP_SCOPE_DEFAULT );
|
|
|
|
rc = LDAP_REFERRAL;
|
2002-11-22 08:56:20 +08:00
|
|
|
#endif /* !SLAPD_MULTIMASTER */
|
1999-12-10 05:30:32 +08:00
|
|
|
|
|
|
|
} else {
|
2002-06-12 06:56:47 +08:00
|
|
|
rc = be->be_extended(
|
|
|
|
be, conn, op,
|
2002-05-01 09:04:57 +08:00
|
|
|
reqoid, reqdata,
|
|
|
|
rspoid, rspdata, rspctrls,
|
|
|
|
text, refs );
|
1999-12-10 05:30:32 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
int slap_passwd_parse( struct berval *reqdata,
|
2002-01-02 19:00:36 +08:00
|
|
|
struct berval *id,
|
|
|
|
struct berval *oldpass,
|
|
|
|
struct berval *newpass,
|
2000-05-22 11:46:57 +08:00
|
|
|
const char **text )
|
1999-12-10 05:30:32 +08:00
|
|
|
{
|
|
|
|
int rc = LDAP_SUCCESS;
|
|
|
|
ber_tag_t tag;
|
|
|
|
ber_len_t len;
|
2002-10-08 05:01:47 +08:00
|
|
|
char berbuf[LBER_ELEMENT_SIZEOF];
|
2002-02-14 21:32:40 +08:00
|
|
|
BerElement *ber = (BerElement *)berbuf;
|
1999-12-10 05:30:32 +08:00
|
|
|
|
1999-12-10 12:52:32 +08:00
|
|
|
if( reqdata == NULL ) {
|
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
1999-12-10 05:30:32 +08:00
|
|
|
|
2002-06-11 03:56:17 +08:00
|
|
|
if( reqdata->bv_len == 0 ) {
|
|
|
|
*text = "empty request data field";
|
|
|
|
return LDAP_PROTOCOL_ERROR;
|
|
|
|
}
|
|
|
|
|
2002-02-14 21:32:40 +08:00
|
|
|
/* ber_init2 uses reqdata directly, doesn't allocate new buffers */
|
|
|
|
ber_init2( ber, reqdata, 0 );
|
1999-12-08 12:37:59 +08:00
|
|
|
|
1999-12-12 03:33:45 +08:00
|
|
|
tag = ber_scanf( ber, "{" /*}*/ );
|
|
|
|
|
|
|
|
if( tag != LBER_ERROR ) {
|
|
|
|
tag = ber_peek_tag( ber, &len );
|
|
|
|
}
|
1999-12-10 05:30:32 +08:00
|
|
|
|
2002-01-29 04:25:30 +08:00
|
|
|
if( tag == LDAP_TAG_EXOP_MODIFY_PASSWD_ID ) {
|
1999-12-10 05:30:32 +08:00
|
|
|
if( id == NULL ) {
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, ERR,
|
|
|
|
"slap_passwd_parse: ID not allowed.\n", 0, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
1999-12-10 05:30:32 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "slap_passwd_parse: ID not allowed.\n",
|
|
|
|
0, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
|
|
|
|
1999-12-10 05:30:32 +08:00
|
|
|
*text = "user must change own password";
|
|
|
|
rc = LDAP_UNWILLING_TO_PERFORM;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2002-01-06 14:11:01 +08:00
|
|
|
tag = ber_scanf( ber, "m", id );
|
1999-12-10 05:30:32 +08:00
|
|
|
|
|
|
|
if( tag == LBER_ERROR ) {
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, ERR,
|
|
|
|
"slap_passwd_parse: ID parse failed.\n", 0, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
1999-12-10 05:30:32 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "slap_passwd_parse: ID parse failed.\n",
|
|
|
|
0, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
|
|
|
|
1999-12-10 05:30:32 +08:00
|
|
|
goto decoding_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
tag = ber_peek_tag( ber, &len);
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
|
|
|
|
2002-01-29 04:25:30 +08:00
|
|
|
if( tag == LDAP_TAG_EXOP_MODIFY_PASSWD_OLD ) {
|
2000-04-30 23:26:51 +08:00
|
|
|
if( oldpass == NULL ) {
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, ERR,
|
|
|
|
"slap_passwd_parse: OLD not allowed.\n" , 0, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
1999-12-10 05:30:32 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "slap_passwd_parse: OLD not allowed.\n",
|
|
|
|
0, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
|
|
|
|
1999-12-10 05:30:32 +08:00
|
|
|
*text = "use bind to verify old password";
|
|
|
|
rc = LDAP_UNWILLING_TO_PERFORM;
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2002-01-06 14:11:01 +08:00
|
|
|
tag = ber_scanf( ber, "m", oldpass );
|
1999-12-10 05:30:32 +08:00
|
|
|
|
|
|
|
if( tag == LBER_ERROR ) {
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, ERR,
|
|
|
|
"slap_passwd_parse: ID parse failed.\n" , 0, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
1999-12-10 05:30:32 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "slap_passwd_parse: ID parse failed.\n",
|
|
|
|
0, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
|
|
|
|
1999-12-10 05:30:32 +08:00
|
|
|
goto decoding_error;
|
|
|
|
}
|
|
|
|
|
2002-03-13 07:07:07 +08:00
|
|
|
tag = ber_peek_tag( ber, &len );
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
|
|
|
|
2002-01-29 04:25:30 +08:00
|
|
|
if( tag == LDAP_TAG_EXOP_MODIFY_PASSWD_NEW ) {
|
2000-04-30 23:26:51 +08:00
|
|
|
if( newpass == NULL ) {
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, ERR,
|
|
|
|
"slap_passwd_parse: NEW not allowed.\n", 0, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
1999-12-10 05:30:32 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "slap_passwd_parse: NEW not allowed.\n",
|
|
|
|
0, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
|
|
|
|
1999-12-10 05:30:32 +08:00
|
|
|
*text = "user specified passwords disallowed";
|
|
|
|
rc = LDAP_UNWILLING_TO_PERFORM;
|
|
|
|
goto done;
|
|
|
|
}
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2002-01-06 14:11:01 +08:00
|
|
|
tag = ber_scanf( ber, "m", newpass );
|
1999-12-10 05:30:32 +08:00
|
|
|
|
|
|
|
if( tag == LBER_ERROR ) {
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, ERR,
|
|
|
|
"slap_passwd_parse: OLD parse failed.\n", 0, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
1999-12-10 05:30:32 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "slap_passwd_parse: OLD parse failed.\n",
|
|
|
|
0, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
|
|
|
|
1999-12-10 05:30:32 +08:00
|
|
|
goto decoding_error;
|
|
|
|
}
|
|
|
|
|
|
|
|
tag = ber_peek_tag( ber, &len );
|
|
|
|
}
|
|
|
|
|
|
|
|
if( len != 0 ) {
|
|
|
|
decoding_error:
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, ERR,
|
|
|
|
"slap_passwd_parse: decoding error, len=%ld\n", (long)len, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
1999-12-10 05:30:32 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE,
|
|
|
|
"slap_passwd_parse: decoding error, len=%ld\n",
|
|
|
|
(long) len, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
|
|
|
|
2000-03-03 04:36:53 +08:00
|
|
|
*text = "data decoding error";
|
1999-12-10 05:30:32 +08:00
|
|
|
rc = LDAP_PROTOCOL_ERROR;
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|
|
|
|
|
1999-12-10 05:30:32 +08:00
|
|
|
done:
|
1999-12-08 12:37:59 +08:00
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
1999-12-10 12:52:32 +08:00
|
|
|
struct berval * slap_passwd_return(
|
|
|
|
struct berval *cred )
|
|
|
|
{
|
|
|
|
int rc;
|
2001-12-31 14:02:35 +08:00
|
|
|
struct berval *bv = NULL;
|
2002-10-08 05:01:47 +08:00
|
|
|
char berbuf[LBER_ELEMENT_SIZEOF];
|
2001-12-31 14:02:35 +08:00
|
|
|
/* opaque structure, size unknown but smaller than berbuf */
|
|
|
|
BerElement *ber = (BerElement *)berbuf;
|
1999-12-10 12:52:32 +08:00
|
|
|
|
|
|
|
assert( cred != NULL );
|
|
|
|
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, ENTRY,
|
|
|
|
"slap_passwd_return: %ld\n",(long)cred->bv_len, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
1999-12-10 12:52:32 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "slap_passwd_return: %ld\n",
|
|
|
|
(long) cred->bv_len, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
1999-12-10 12:52:32 +08:00
|
|
|
|
2001-12-31 14:02:35 +08:00
|
|
|
ber_init_w_nullc( ber, LBER_USE_DER );
|
|
|
|
|
2000-06-24 09:40:39 +08:00
|
|
|
rc = ber_printf( ber, "{tON}",
|
2002-01-29 04:25:30 +08:00
|
|
|
LDAP_TAG_EXOP_MODIFY_PASSWD_GEN, cred );
|
1999-12-10 12:52:32 +08:00
|
|
|
|
2001-12-31 14:02:35 +08:00
|
|
|
if( rc >= 0 ) {
|
|
|
|
(void) ber_flatten( ber, &bv );
|
1999-12-10 12:52:32 +08:00
|
|
|
}
|
|
|
|
|
2001-12-31 14:09:29 +08:00
|
|
|
ber_free_buf( ber );
|
1999-12-10 12:52:32 +08:00
|
|
|
|
|
|
|
return bv;
|
|
|
|
}
|
|
|
|
|
1999-11-24 03:00:09 +08:00
|
|
|
int
|
|
|
|
slap_passwd_check(
|
2000-09-20 08:28:57 +08:00
|
|
|
Connection *conn,
|
1999-12-07 05:42:10 +08:00
|
|
|
Attribute *a,
|
1999-12-08 12:37:59 +08:00
|
|
|
struct berval *cred )
|
1999-11-24 03:00:09 +08:00
|
|
|
{
|
2000-09-20 08:28:57 +08:00
|
|
|
int result = 1;
|
2002-01-02 19:00:36 +08:00
|
|
|
struct berval *bv;
|
1999-11-24 03:00:09 +08:00
|
|
|
|
2000-10-10 03:09:28 +08:00
|
|
|
#if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
|
2000-09-21 01:13:36 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( &passwd_mutex );
|
2000-09-20 08:28:57 +08:00
|
|
|
#ifdef SLAPD_SPASSWD
|
|
|
|
lutil_passwd_sasl_conn = conn->c_sasl_context;
|
1999-11-24 03:00:09 +08:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
for ( bv = a->a_vals; bv->bv_val != NULL; bv++ ) {
|
|
|
|
if( !lutil_passwd( bv, cred, NULL ) ) {
|
2000-09-20 08:28:57 +08:00
|
|
|
result = 0;
|
|
|
|
break;
|
|
|
|
}
|
1999-11-24 03:00:09 +08:00
|
|
|
}
|
|
|
|
|
2000-10-10 03:09:28 +08:00
|
|
|
#if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
|
2000-09-21 01:34:06 +08:00
|
|
|
#ifdef SLAPD_SPASSWD
|
|
|
|
lutil_passwd_sasl_conn = NULL;
|
|
|
|
#endif
|
2000-09-20 08:28:57 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( &passwd_mutex );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return result;
|
1999-11-24 03:00:09 +08:00
|
|
|
}
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
void
|
|
|
|
slap_passwd_generate( struct berval *pass )
|
1999-12-10 12:52:32 +08:00
|
|
|
{
|
2002-01-02 19:00:36 +08:00
|
|
|
struct berval *tmp;
|
2001-01-16 03:17:29 +08:00
|
|
|
#ifdef NEW_LOGGING
|
2002-07-12 04:33:24 +08:00
|
|
|
LDAP_LOG( OPERATION, ENTRY, "slap_passwd_generate: begin\n", 0, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#else
|
1999-12-10 12:52:32 +08:00
|
|
|
Debug( LDAP_DEBUG_TRACE, "slap_passwd_generate\n", 0, 0, 0 );
|
2001-01-16 03:17:29 +08:00
|
|
|
#endif
|
1999-12-12 03:33:45 +08:00
|
|
|
/*
|
|
|
|
* generate passwords of only 8 characters as some getpass(3)
|
|
|
|
* implementations truncate at 8 characters.
|
|
|
|
*/
|
2002-01-02 19:00:36 +08:00
|
|
|
tmp = lutil_passwd_generate( 8 );
|
|
|
|
if (tmp) {
|
|
|
|
*pass = *tmp;
|
|
|
|
free(tmp);
|
|
|
|
} else {
|
|
|
|
pass->bv_val = NULL;
|
|
|
|
pass->bv_len = 0;
|
|
|
|
}
|
1999-12-10 12:52:32 +08:00
|
|
|
}
|
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
void
|
|
|
|
slap_passwd_hash(
|
|
|
|
struct berval * cred,
|
|
|
|
struct berval * new )
|
1999-12-08 12:37:59 +08:00
|
|
|
{
|
2002-01-02 19:00:36 +08:00
|
|
|
struct berval *tmp;
|
2001-05-03 03:46:30 +08:00
|
|
|
#ifdef LUTIL_SHA1_BYTES
|
|
|
|
char* hash = default_passwd_hash ? default_passwd_hash : "{SSHA}";
|
|
|
|
#else
|
|
|
|
char* hash = default_passwd_hash ? default_passwd_hash : "{SMD5}";
|
|
|
|
#endif
|
|
|
|
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2000-10-10 03:09:28 +08:00
|
|
|
#if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
|
2000-09-20 08:28:57 +08:00
|
|
|
ldap_pvt_thread_mutex_lock( &passwd_mutex );
|
1999-12-08 12:37:59 +08:00
|
|
|
#endif
|
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
tmp = lutil_passwd_hash( cred , hash );
|
1999-12-08 12:37:59 +08:00
|
|
|
|
2000-10-10 03:09:28 +08:00
|
|
|
#if defined( SLAPD_CRYPT ) || defined( SLAPD_SPASSWD )
|
2000-09-20 08:28:57 +08:00
|
|
|
ldap_pvt_thread_mutex_unlock( &passwd_mutex );
|
1999-12-08 12:37:59 +08:00
|
|
|
#endif
|
2002-06-01 04:23:33 +08:00
|
|
|
|
|
|
|
if( tmp == NULL ) {
|
|
|
|
new->bv_len = 0;
|
|
|
|
new->bv_val = NULL;
|
|
|
|
}
|
|
|
|
|
2002-01-02 19:00:36 +08:00
|
|
|
*new = *tmp;
|
|
|
|
free( tmp );
|
|
|
|
return;
|
1999-12-08 12:37:59 +08:00
|
|
|
}
|