calamares/src/modules/users/CheckPWQuality.cpp

186 lines
4.9 KiB
C++
Raw Normal View History

/* === This file is part of Calamares - <https://github.com/calamares> ===
*
* Copyright 2018, Adriaan de Groot <groot@kde.org>
*
* Calamares is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Calamares is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Calamares. If not, see <http://www.gnu.org/licenses/>.
*/
#include "CheckPWQuality.h"
#include "utils/Logger.h"
#include <QWidget>
#ifdef HAVE_LIBPWQUALITY
#include <pwquality.h>
#endif
#include <memory>
static void _default_cleanup()
{
}
PasswordCheck::PasswordCheck()
: m_message()
, m_accept( []( const QString& s ){ return true; } )
{
}
PasswordCheck::PasswordCheck( const QString& m, AcceptFunc a )
: m_message( [m](){ return m; } )
, m_accept( a )
{
}
PasswordCheck::PasswordCheck( MessageFunc m, AcceptFunc a )
: m_message( m )
, m_accept( a )
{
}
// Try to trick Transifex into accepting these strings
#define tr parent->tr
DEFINE_CHECK_FUNC(minLength)
{
int minLength = -1;
if ( value.canConvert( QVariant::Int ) )
minLength = value.toInt();
if ( minLength > 0 )
{
cDebug() << " .. minLength set to" << minLength;
checks.push_back(
PasswordCheck(
[parent]()
{
return tr( "Password is too short" );
},
[minLength]( const QString& s )
{
return s.length() >= minLength;
}
) );
}
}
DEFINE_CHECK_FUNC(maxLength)
{
int maxLength = -1;
if ( value.canConvert( QVariant::Int ) )
maxLength = value.toInt();
if ( maxLength > 0 )
{
cDebug() << " .. maxLength set to" << maxLength;
checks.push_back(
PasswordCheck(
[parent]()
{
return tr( "Password is too long" );
}, [maxLength]( const QString& s )
{
return s.length() <= maxLength;
}
) );
}
}
#ifdef HAVE_LIBPWQUALITY
/**
* Class that acts as a RAII placeholder for pwquality_settings_t pointers.
* Gets a new pointer and ensures it is deleted only once; provides
* convenience functions for setting options and checking passwords.
*/
class PWSettingsHolder
{
public:
PWSettingsHolder()
: m_settings( pwquality_default_settings() )
{
}
~PWSettingsHolder()
{
cDebug() << "Freeing PWQ@" << (void *)m_settings;
pwquality_free_settings( m_settings );
}
/// Sets an option via the configuration string @p v, <key>=<value> style.
int set( const QString& v )
{
return pwquality_set_option( m_settings, v.toUtf8().constData() );
}
/// Checks the given password @p pwd against the current configuration
int check( const QString& pwd )
{
return pwquality_check(m_settings, pwd.toUtf8().constData(), nullptr, nullptr, nullptr);
}
private:
pwquality_settings_t* m_settings;
} ;
DEFINE_CHECK_FUNC(libpwquality)
{
if ( !value.canConvert( QVariant::List ) )
{
cDebug() << "WARNING: libpwquality settings is not a list";
return;
}
QVariantList l = value.toList();
unsigned int requirement_count = 0;
auto settings = std::make_shared<PWSettingsHolder>();
for ( const auto& v : l )
{
if (v.type() == QVariant::String)
{
QString option = v.toString();
int r = settings->set( option );
if (r)
cDebug() << " .. WARNING: unrecognized libpwquality setting" << option;
else
{
cDebug() << " .. libpwquality setting" << option;
++requirement_count;
}
}
else
cDebug() << " .. WARNING: unrecognized libpwquality setting" << v;
}
/* Something actually added? */
if (requirement_count)
{
checks.push_back(
PasswordCheck(
[parent]()
{
return tr( "Password is too weak" );
},
[settings]( const QString& s )
{
int r = settings->check( s );
if ( r < 0 )
cDebug() << "WARNING: libpwquality error" << r;
else if ( r < 40 )
cDebug() << "Password strength" << r << "too low";
return r >= 40;
}
) );
}
}
#endif