]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OStatus/classes/Magicsig.php
Moved Diaspora specific metadata to own plugin
[quix0rs-gnu-social.git] / plugins / OStatus / classes / Magicsig.php
1 <?php
2 /**
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2010, StatusNet, Inc.
5  *
6  * A sample module to show best practices for StatusNet plugins
7  *
8  * PHP version 5
9  *
10  * This program is free software: you can redistribute it and/or modify
11  * it under the terms of the GNU Affero General Public License as published by
12  * the Free Software Foundation, either version 3 of the License, or
13  * (at your option) any later version.
14  *
15  * This program is distributed in the hope that it will be useful,
16  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18  * GNU Affero General Public License for more details.
19  *
20  * You should have received a copy of the GNU Affero General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  *
23  * @package   StatusNet
24  * @author    James Walker <james@status.net>
25  * @copyright 2010 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET')) {
31     exit(1);
32 }
33
34 require_once 'Crypt/RSA.php';
35
36 class Magicsig extends Managed_DataObject
37 {
38     const PUBLICKEYREL = 'magic-public-key';
39
40     const DEFAULT_KEYLEN = 1024;
41     const DEFAULT_SIGALG = 'RSA-SHA256';
42
43     public $__table = 'magicsig';
44
45     /**
46      * Key to user.id/profile.id for the local user whose key we're storing.
47      *
48      * @var int
49      */
50     public $user_id;
51
52     /**
53      * Flattened string representation of the key pair; callers should
54      * usually use $this->publicKey and $this->privateKey directly,
55      * which hold live Crypt_RSA key objects.
56      *
57      * @var string
58      */
59     public $keypair;
60
61     /**
62      * Crypto algorithm used for this key; currently only RSA-SHA256 is supported.
63      *
64      * @var string
65      */
66     public $alg;
67
68     /**
69      * Public RSA key; gets serialized in/out via $this->keypair string.
70      *
71      * @var Crypt_RSA
72      */
73     public $publicKey;
74
75     /**
76      * PrivateRSA key; gets serialized in/out via $this->keypair string.
77      *
78      * @var Crypt_RSA
79      */
80     public $privateKey;
81
82     public function __construct($alg=self::DEFAULT_SIGALG)
83     {
84         $this->alg = $alg;
85     }
86
87     /**
88      * Fetch a Magicsig object from the cache or database on a field match.
89      *
90      * @param string $k
91      * @param mixed $v
92      * @return Magicsig
93      */
94     static function getKV($k, $v=null)
95     {
96         $obj =  parent::getKV($k, $v);
97         if ($obj instanceof Magicsig) {
98             $obj->importKeys(); // Loads Crypt_RSA objects etc.
99
100             // Throw out a big fat warning for keys of less than 1024 bits. (
101             // The only case these show up in would be imported or
102             // legacy very-old-StatusNet generated keypairs.
103             if (strlen($obj->publicKey->modulus->toBits()) < 1024) {
104                 common_log(LOG_WARNING, sprintf('Salmon key with <1024 bits (%d) belongs to profile with id==%d',
105                                             strlen($obj->publicKey->modulus->toBits()),
106                                             $obj->user_id));
107             }
108         }
109
110         return $obj;
111     }
112
113     public static function schemaDef()
114     {
115         return array(
116             'fields' => array(
117                 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user id'),
118                 'keypair' => array('type' => 'text', 'description' => 'keypair text representation'),
119                 'alg' => array('type' => 'varchar', 'length' => 64, 'description' => 'algorithm'),
120             ),
121             'primary key' => array('user_id'),
122             'foreign keys' => array(
123                 'magicsig_user_id_fkey' => array('profile', array('user_id' => 'id')),
124             ),
125         );
126     }
127
128     /**
129      * Save this keypair into the database.
130      *
131      * Overloads default insert behavior to encode the live key objects
132      * as a flat string for storage.
133      *
134      * @return mixed
135      */
136     function insert()
137     {
138         $this->keypair = $this->toString(true);
139
140         return parent::insert();
141     }
142
143     /**
144      * Generate a new keypair for a local user and store in the database.
145      *
146      * Warning: this can be very slow on systems without the GMP module.
147      * Runtimes of 20-30 seconds are not unheard-of.
148      *
149      * FIXME: More than 1024 bits please. But StatusNet _discards_ non-1024 bits,
150      *        so we'll have to wait the last mohican out before switching defaults.
151      *
152      * @param User $user the local user (since we don't have remote private keys)
153      */
154     public static function generate(User $user, $bits=self::DEFAULT_KEYLEN, $alg=self::DEFAULT_SIGALG)
155     {
156         $magicsig = new Magicsig($alg);
157         $magicsig->user_id = $user->id;
158
159         $rsa = new Crypt_RSA();
160
161         $keypair = $rsa->createKey($bits);
162
163         $magicsig->privateKey = new Crypt_RSA();
164         $magicsig->privateKey->loadKey($keypair['privatekey']);
165
166         $magicsig->publicKey = new Crypt_RSA();
167         $magicsig->publicKey->loadKey($keypair['publickey']);
168
169         $magicsig->insert();        // will do $this->keypair = $this->toString(true);
170         $magicsig->importKeys();    // seems it's necessary to re-read keys from text keypair
171
172         return $magicsig;
173     }
174
175     /**
176      * Encode the keypair or public key as a string.
177      *
178      * @param boolean $full_pair set to true to include the private key.
179      * @return string
180      */
181     public function toString($full_pair=false)
182     {
183         $mod = Magicsig::base64_url_encode($this->publicKey->modulus->toBytes());
184         $exp = Magicsig::base64_url_encode($this->publicKey->exponent->toBytes());
185         $private_exp = '';
186         if ($full_pair && $this->privateKey instanceof Crypt_RSA && $this->privateKey->exponent->toBytes()) {
187             $private_exp = '.' . Magicsig::base64_url_encode($this->privateKey->exponent->toBytes());
188         }
189
190         return 'RSA.' . $mod . '.' . $exp . $private_exp;
191     }
192
193     public function exportPublicKey($format=CRYPT_RSA_PUBLIC_FORMAT_PKCS1)
194     {
195         $this->publicKey->setPublicKey();
196         return $this->publicKey->getPublicKey($format);
197     }
198
199     /**
200      * importKeys will load the object's keypair string, which initiates
201      * loadKey() and configures Crypt_RSA objects.
202      *
203      * @param string $keypair optional, otherwise the object's "keypair" property will be used
204      */
205     public function importKeys($keypair=null)
206     {
207         $this->keypair = $keypair===null ? $this->keypair : preg_replace('/\s+/', '', $keypair);
208
209         // parse components
210         if (!preg_match('/RSA\.([^\.]+)\.([^\.]+)(\.([^\.]+))?/', $this->keypair, $matches)) {
211             common_debug('Magicsig error: RSA key not found in provided string.');
212             throw new ServerException('RSA key not found in keypair string.');
213         }
214
215         $mod = $matches[1];
216         $exp = $matches[2];
217         if (!empty($matches[4])) {
218             $private_exp = $matches[4];
219         } else {
220             $private_exp = false;
221         }
222
223         $this->loadKey($mod, $exp, 'public');
224         if ($private_exp) {
225             $this->loadKey($mod, $private_exp, 'private');
226         }
227     }
228
229     /**
230      * Fill out $this->privateKey or $this->publicKey with a Crypt_RSA object
231      * representing the give key (as mod/exponent pair).
232      *
233      * @param string $mod base64-encoded
234      * @param string $exp base64-encoded exponent
235      * @param string $type one of 'public' or 'private'
236      */
237     public function loadKey($mod, $exp, $type = 'public')
238     {
239         $rsa = new Crypt_RSA();
240         $rsa->setSignatureMode(CRYPT_RSA_SIGNATURE_PKCS1);
241         $rsa->setHash($this->getHash());
242         $rsa->modulus = new Math_BigInteger(Magicsig::base64_url_decode($mod), 256);
243         $rsa->k = strlen($rsa->modulus->toBytes());
244         $rsa->exponent = new Math_BigInteger(Magicsig::base64_url_decode($exp), 256);
245
246         if ($type == 'private') {
247             $this->privateKey = $rsa;
248         } else {
249             $this->publicKey = $rsa;
250         }
251     }
252
253     /**
254      * Returns the name of the crypto algorithm used for this key.
255      *
256      * @return string
257      */
258     public function getName()
259     {
260         return $this->alg;
261     }
262
263     /**
264      * Returns the name of a hash function to use for signing with this key.
265      *
266      * @return string
267      */
268     public function getHash()
269     {
270         switch ($this->alg) {
271         case 'RSA-SHA256':
272             return 'sha256';
273         }
274         throw new ServerException('Unknown or unsupported hash algorithm for Salmon');
275     }
276
277     /**
278      * Generate base64-encoded signature for the given byte string
279      * using our private key.
280      *
281      * @param string $bytes as raw byte string
282      * @return string base64url-encoded signature
283      */
284     public function sign($bytes)
285     {
286         $sig = $this->privateKey->sign($bytes);
287         if ($sig === false) {
288             throw new ServerException('Could not sign data');
289         }
290         return Magicsig::base64_url_encode($sig);
291     }
292
293     /**
294      *
295      * @param string $signed_bytes as raw byte string
296      * @param string $signature as base64url encoded
297      * @return boolean
298      */
299     public function verify($signed_bytes, $signature)
300     {
301         $signature = self::base64_url_decode($signature);
302         return $this->publicKey->verify($signed_bytes, $signature);
303     }
304
305     /**
306      * URL-encoding-friendly base64 variant encoding.
307      *
308      * @param string $input
309      * @return string
310      */
311     public static function base64_url_encode($input)
312     {
313         return strtr(base64_encode($input), '+/', '-_');
314     }
315
316     /**
317      * URL-encoding-friendly base64 variant decoding.
318      *
319      * @param string $input
320      * @return string
321      */
322     public static function base64_url_decode($input)
323     {
324         return base64_decode(strtr($input, '-_', '+/'));
325     }
326 }