]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/OStatus/classes/Magicsig.php
c07a082495578790eea86f080323a3d5fbfffa5b
[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     public $__table = 'magicsig';
41
42     /**
43      * Key to user.id/profile.id for the local user whose key we're storing.
44      *
45      * @var int
46      */
47     public $user_id;
48
49     /**
50      * Flattened string representation of the key pair; callers should
51      * usually use $this->publicKey and $this->privateKey directly,
52      * which hold live Crypt_RSA key objects.
53      *
54      * @var string
55      */
56     public $keypair;
57
58     /**
59      * Crypto algorithm used for this key; currently only RSA-SHA256 is supported.
60      *
61      * @var string
62      */
63     public $alg;
64
65     /**
66      * Public RSA key; gets serialized in/out via $this->keypair string.
67      *
68      * @var Crypt_RSA
69      */
70     public $publicKey;
71
72     /**
73      * PrivateRSA key; gets serialized in/out via $this->keypair string.
74      *
75      * @var Crypt_RSA
76      */
77     public $privateKey;
78
79     public function __construct($alg = 'RSA-SHA256')
80     {
81         $this->alg = $alg;
82     }
83
84     /**
85      * Fetch a Magicsig object from the cache or database on a field match.
86      *
87      * @param string $k
88      * @param mixed $v
89      * @return Magicsig
90      */
91     static function getKV($k, $v=null)
92     {
93         $obj =  parent::getKV($k, $v);
94         if ($obj instanceof Magicsig) {
95             // Please note we're replacing the $obj
96             // FIXME: There should be an import-key that modifies the fetched $obj
97             $obj = Magicsig::fromString($obj->keypair);
98
99             // Never allow less than 1024 bit keys.
100             // The only case these show up in would be imported or
101             // legacy very-old-StatusNet generated keypairs.
102             if (strlen($obj->publicKey->modulus->toBits()) < 1024) {
103                 $obj->delete();
104                 return false;
105             }
106         }
107
108         return $obj;
109     }
110
111     public static function schemaDef()
112     {
113         return array(
114             'fields' => array(
115                 'user_id' => array('type' => 'int', 'not null' => true, 'description' => 'user id'),
116                 'keypair' => array('type' => 'text', 'description' => 'keypair text representation'),
117                 'alg' => array('type' => 'varchar', 'length' => 64, 'description' => 'algorithm'),
118             ),
119             'primary key' => array('user_id'),
120             'foreign keys' => array(
121                 'magicsig_user_id_fkey' => array('user', array('user_id' => 'id')),
122             ),
123         );
124     }
125
126     /**
127      * Save this keypair into the database.
128      *
129      * Overloads default insert behavior to encode the live key objects
130      * as a flat string for storage.
131      *
132      * @return mixed
133      */
134     function insert()
135     {
136         $this->keypair = $this->toString();
137
138         return parent::insert();
139     }
140
141     /**
142      * Generate a new keypair for a local user and store in the database.
143      *
144      * Warning: this can be very slow on systems without the GMP module.
145      * Runtimes of 20-30 seconds are not unheard-of.
146      *
147      * @param int $user_id id of local user we're creating a key for
148      */
149     public function generate($user_id, $bits=1024)
150     {
151         $rsa = new Crypt_RSA();
152
153         $keypair = $rsa->createKey($bits);
154
155         $rsa->loadKey($keypair['privatekey']);
156
157         $this->privateKey = new Crypt_RSA();
158         $this->privateKey->loadKey($keypair['privatekey']);
159
160         $this->publicKey = new Crypt_RSA();
161         $this->publicKey->loadKey($keypair['publickey']);
162
163         $this->user_id = $user_id;
164         $this->insert();
165     }
166
167     /**
168      * Encode the keypair or public key as a string.
169      *
170      * @param boolean $full_pair set to false to leave out the private key.
171      * @return string
172      */
173     public function toString($full_pair = true)
174     {
175         $mod = Magicsig::base64_url_encode($this->publicKey->modulus->toBytes());
176         $exp = Magicsig::base64_url_encode($this->publicKey->exponent->toBytes());
177         $private_exp = '';
178         if ($full_pair && $this->privateKey->exponent->toBytes()) {
179             $private_exp = '.' . Magicsig::base64_url_encode($this->privateKey->exponent->toBytes());
180         }
181
182         return 'RSA.' . $mod . '.' . $exp . $private_exp;
183     }
184
185     /**
186      * Decode a string representation of an RSA public key or keypair
187      * as a Magicsig object which can be used to sign or verify.
188      *
189      * @param string $text
190      * @return Magicsig
191      */
192     public static function fromString($text)
193     {
194         $magic_sig = new Magicsig();
195
196         // remove whitespace
197         $text = preg_replace('/\s+/', '', $text);
198
199         // parse components
200         if (!preg_match('/RSA\.([^\.]+)\.([^\.]+)(.([^\.]+))?/', $text, $matches)) {
201             return false;
202         }
203
204         $mod = $matches[1];
205         $exp = $matches[2];
206         if (!empty($matches[4])) {
207             $private_exp = $matches[4];
208         } else {
209             $private_exp = false;
210         }
211
212         $magic_sig->loadKey($mod, $exp, 'public');
213         if ($private_exp) {
214             $magic_sig->loadKey($mod, $private_exp, 'private');
215         }
216
217         return $magic_sig;
218     }
219
220     /**
221      * Fill out $this->privateKey or $this->publicKey with a Crypt_RSA object
222      * representing the give key (as mod/exponent pair).
223      *
224      * @param string $mod base64-encoded
225      * @param string $exp base64-encoded exponent
226      * @param string $type one of 'public' or 'private'
227      */
228     public function loadKey($mod, $exp, $type = 'public')
229     {
230         common_log(LOG_DEBUG, "Adding ".$type." key: (".$mod .', '. $exp .")");
231
232         $rsa = new Crypt_RSA();
233         $rsa->signatureMode = CRYPT_RSA_SIGNATURE_PKCS1;
234         $rsa->setHash('sha256');
235         $rsa->modulus = new Math_BigInteger(Magicsig::base64_url_decode($mod), 256);
236         $rsa->k = strlen($rsa->modulus->toBytes());
237         $rsa->exponent = new Math_BigInteger(Magicsig::base64_url_decode($exp), 256);
238
239         if ($type == 'private') {
240             $this->privateKey = $rsa;
241         } else {
242             $this->publicKey = $rsa;
243         }
244     }
245
246     /**
247      * Returns the name of the crypto algorithm used for this key.
248      *
249      * @return string
250      */
251     public function getName()
252     {
253         return $this->alg;
254     }
255
256     /**
257      * Returns the name of a hash function to use for signing with this key.
258      *
259      * @return string
260      * @fixme is this used? doesn't seem to be called by name.
261      */
262     public function getHash()
263     {
264         switch ($this->alg) {
265
266         case 'RSA-SHA256':
267             return 'sha256';
268         }
269     }
270
271     /**
272      * Generate base64-encoded signature for the given byte string
273      * using our private key.
274      *
275      * @param string $bytes as raw byte string
276      * @return string base64-encoded signature
277      */
278     public function sign($bytes)
279     {
280         $sig = $this->privateKey->sign($bytes);
281         return Magicsig::base64_url_encode($sig);
282     }
283
284     /**
285      *
286      * @param string $signed_bytes as raw byte string
287      * @param string $signature as base64
288      * @return boolean
289      */
290     public function verify($signed_bytes, $signature)
291     {
292         $signature = Magicsig::base64_url_decode($signature);
293         return $this->publicKey->verify($signed_bytes, $signature);
294     }
295
296     /**
297      * URL-encoding-friendly base64 variant encoding.
298      *
299      * @param string $input
300      * @return string
301      */
302     public static function base64_url_encode($input)
303     {
304         return strtr(base64_encode($input), '+/', '-_');
305     }
306
307     /**
308      * URL-encoding-friendly base64 variant decoding.
309      *
310      * @param string $input
311      * @return string
312      */
313     public static function base64_url_decode($input)
314     {
315         return base64_decode(strtr($input, '-_', '+/'));
316     }
317 }