MediaWiki 1.40.4
wrapOldPasswords.php
Go to the documentation of this file.
1<?php
24require_once __DIR__ . '/Maintenance.php';
25
27
36 public function __construct() {
37 parent::__construct();
38 $this->addDescription( 'Wrap all passwords of a certain type in a new layered type. '
39 . 'The script runs in dry-run mode by default (use --update to update rows)' );
40 $this->addOption( 'type',
41 'Password type to wrap passwords in (must inherit LayeredParameterizedPassword)', true, true );
42 $this->addOption( 'verbose', 'Enables verbose output', false, false, 'v' );
43 $this->addOption( 'update', 'Actually wrap passwords', false, false, 'u' );
44 $this->setBatchSize( 3 );
45 }
46
47 public function execute() {
48 $passwordFactory = MediaWikiServices::getInstance()->getPasswordFactory();
49
50 $typeInfo = $passwordFactory->getTypes();
51 $layeredType = $this->getOption( 'type' );
52
53 // Check that type exists and is a layered type
54 if ( !isset( $typeInfo[$layeredType] ) ) {
55 $this->fatalError( 'Undefined password type' );
56 }
57
58 $passObj = $passwordFactory->newFromType( $layeredType );
59 if ( !$passObj instanceof LayeredParameterizedPassword ) {
60 $this->fatalError( 'Layered parameterized password type must be used.' );
61 }
62
63 // Extract the first layer type
64 $typeConfig = $typeInfo[$layeredType];
65 $firstType = $typeConfig['types'][0];
66
67 $update = $this->hasOption( 'update' );
68
69 // Get a list of password types that are applicable
70 $dbw = $this->getDB( DB_PRIMARY );
71 $typeCond = 'user_password' . $dbw->buildLike( ":$firstType:", $dbw->anyString() );
72
73 $count = 0;
74 $minUserId = 0;
75 while ( true ) {
76 if ( $update ) {
77 $this->beginTransaction( $dbw, __METHOD__ );
78 }
79
80 $start = microtime( true );
81 $res = $dbw->select( 'user',
82 [ 'user_id', 'user_name', 'user_password' ],
83 [
84 'user_id > ' . $dbw->addQuotes( $minUserId ),
85 $typeCond
86 ],
87 __METHOD__,
88 [
89 'ORDER BY' => 'user_id',
90 'LIMIT' => $this->getBatchSize(),
91 'LOCK IN SHARE MODE',
92 ]
93 );
94
95 if ( $res->numRows() === 0 ) {
96 if ( $update ) {
97 $this->commitTransaction( $dbw, __METHOD__ );
98 }
99 break;
100 }
101
103 $updateUsers = [];
104 foreach ( $res as $row ) {
105 $user = User::newFromId( $row->user_id );
107 $password = $passwordFactory->newFromCiphertext( $row->user_password );
108 '@phan-var ParameterizedPassword $password';
110 $layeredPassword = $passwordFactory->newFromType( $layeredType );
111 '@phan-var LayeredParameterizedPassword $layeredPassword';
112 $layeredPassword->partialCrypt( $password );
113
114 if ( $this->hasOption( 'verbose' ) ) {
115 $this->output(
116 "Updating password for user {$row->user_name} ({$row->user_id}) from " .
117 "type {$password->getType()} to {$layeredPassword->getType()}.\n"
118 );
119 }
120
121 $count++;
122 if ( $update ) {
123 $updateUsers[] = $user;
124 $dbw->update( 'user',
125 [ 'user_password' => $layeredPassword->toString() ],
126 [ 'user_id' => $row->user_id ],
127 __METHOD__
128 );
129 }
130
131 $minUserId = $row->user_id;
132 }
133
134 if ( $update ) {
135 $this->commitTransaction( $dbw, __METHOD__ );
136
137 // Clear memcached so old passwords are wiped out
138 foreach ( $updateUsers as $user ) {
139 $user->clearSharedCache( 'refresh' );
140 }
141 }
142
143 $this->output( "Last id processed: $minUserId; Actually updated: $count...\n" );
144 $delta = microtime( true ) - $start;
145 $this->output( sprintf(
146 "%4d passwords wrapped in %6.2fms (%6.2fms each)\n",
147 $res->numRows(),
148 $delta * 1000.0,
149 ( $delta / $res->numRows() ) * 1000.0
150 ) );
151 }
152
153 if ( $update ) {
154 $this->output( "$count users rows updated.\n" );
155 } else {
156 $this->output( "$count user rows found using old password formats. "
157 . "Run script again with --update to update these rows.\n" );
158 }
159 }
160}
161
162$maintClass = WrapOldPasswords::class;
163require_once RUN_MAINTENANCE_IF_MAIN;
getDB()
This password hash type layers one or more parameterized password types on top of each other.
Abstract maintenance class for quickly writing and churning out maintenance scripts with minimal effo...
beginTransaction(IDatabase $dbw, $fname)
Begin a transaction on a DB.
commitTransaction(IDatabase $dbw, $fname)
Commit the transaction on a DB handle and wait for replica DBs to catch up.
output( $out, $channel=null)
Throw some output to the user.
hasOption( $name)
Checks to see if a particular option was set.
addDescription( $text)
Set the description text.
addOption( $name, $description, $required=false, $withArg=false, $shortName=false, $multiOccurrence=false)
Add a parameter to the script.
getOption( $name, $default=null)
Get an option, or return the default.
setBatchSize( $s=0)
fatalError( $msg, $exitCode=1)
Output a message and terminate the current script.
Service locator for MediaWiki core services.
static newFromId( $id)
Static factory method for creation from a given user ID.
Definition User.php:626
Maintenance script to wrap all passwords of a certain type in a specified layered type that wraps aro...
execute()
Do the actual work.
__construct()
Default constructor.
const DB_PRIMARY
Definition defines.php:28