File: class_certificate.inc

package info (click to toggle)
fusiondirectory 1.0.8.2-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 28,984 kB
  • sloc: php: 74,645; xml: 3,645; perl: 1,555; pascal: 705; sh: 135; sql: 45; makefile: 19
file content (313 lines) | stat: -rw-r--r-- 7,025 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
<?php
/*
  This code is part of FusionDirectory (http://www.fusiondirectory.org/)
  Copyright (C) 2003-2010  Cajus Pollmeier
  Copyright (C) 2011-2013  FusionDirectory

  This program 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 2 of the License, or
  (at your option) any later version.

  This program 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 this program; if not, write to the Free Software
  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*/

/*!
 * \file class_certificate.inc
 * Source code for class certificate
 */

/* certificates */
define("PEM", "pem");
define("DER", "der");

/*!
 * \brief This class contains all the function needed to import certificates
 */
class certificate
{
  /* vars */
  var $data;
  var $type;
  var $error;

  /*
   * \brief Certificate constructor (initialize all vars)
   */
  function certificate()
  {
    $this->data   = "";
    $this->type   = FALSE;
    $this->error  = "";
    $this->info   = array();
  }

  /*
   * \brief Reads specified Certfile/string and convert it to PEM
   *
   * \param string $data
   *
   * \param boolean $type FALSE
   */
  function import($data, $type = FALSE)
  {
    /* if is file read from file, else use string as it is*/
    if (is_file($data)) {
      $fp   = fopen($data, "r+");
      $str  = "";

      if (!$fp) {
        $this->certificate();
        $this->error = msgPool::cannotReadFile($data);
        return FALSE;
      } else {
        /* Reading data*/
        while (!feof($fp)) {
          $str .= fgets($fp, 1024);
        }
      }
      /* Filename given, so we use the data from the file */
      $this->data = $str;
    } else {
      /* Cert as String, use this string */
      $this->data = $data;
    }

    /* Data can't be empty */
    if ($data = "") {
      $this->certificate();
      $this->error = _("Certificate is empty!");
      return FALSE;
    }

    /* Prefer specified certtype*/
    if ($type) {
      $this->type = $type;
    } else {
      /* Detect certtype, cause there is none specified */

      /* PEM always starts with ----BEGIN CERTIFICATE-----*/
      if (strstr($this->data, "CERTIFICATE"))  {
        $this->type = PEM;
      } else {
        /* We test DER now, on fail abort */
        $this->type = DER;
      }
    }

    /* Convert to PEM to give $this->info the ability to read the cert */
    if ($this->type == DER) {
      $this->derTOpem();
    }

    /* If cert is loaded correctly and is PEM now, we could read some data out of it */
    if (count($this->info()) <= 1) {
      $this->certificate();
      $this->error = _("Cannot load certificate - only PEM/DER is supported!");
      /* Reset*/
      return FALSE;
    }

    $this->info(FALSE);

    /* Loaded a readable cert */
    return TRUE;
  }

  /*
   * \brief Get all data of a certificate
   *
   * \param boolean $ret true
   *
   * \return Array with all containing data
   */
  function info($ret = TRUE)
  {
    if ($this->type != PEM) {
      $this->error = _("Cannot extract information for non PEM certificates!");
      return FALSE;
    } else {
      /* return an array with all given information */
      $this->info = openssl_x509_parse($this->data);

      if ($ret) {
        return $this->info;
      }
    }
  }

  /* Return Functions */
  function getvalidto_date()
  {
    return $this->_genericGet1('validTo_time_t');
  }

  function getvalidfrom_date()
  {
    return $this->_genericGet1('validFrom_time_t');
  }

  /*!
   * \brief Get the name of the certificate
   *
   * \return String with the name, but return FALSE if not found
   */
  function getname()
  {
    return $this->_genericGet1('name');
  }

  /*!
   * \brief Get the CN of the certificate
   *
   * \return String with the CN, but return FALSE if not found
   */
  function getCN()
  {
    return $this->_genericGet2('CN');
  }

  function getO()
  {
    return $this->_genericGet2('O');
  }

  function getOU()
  {
    return $this->_genericGet2('OU');
  }
  /*!
   * \brief Get the serial number of the certificate
   *
   * \return Integer number, but return FALSE if not found
   */
  function getSerialNumber()
  {
    return $this->_genericGet1('serialNumber');
  }

  protected function _genericGet1($key)
  {
    if (isset($this->info[$key])) {
      return $this->info[$key];
    } else {
      return FALSE;
    }
  }

  protected function _genericGet2($key)
  {
    if (isset($this->info['subject'][$key])) {
      return $this->info['subject'][$key];
    } else {
      return FALSE;
    }
  }

  /*
   * \brief Check if the certificate is valid
   *    Is valide if the length of array > 1
   *    and type is true
   */
  function isvalid()
  {
    return (($this->type != FALSE) && (count($this->info) > 1));
  }


  /*
   * \brief Export Certificate to specified file, with specified method
   *
   * \param boolean $type
   *
   * \param string $filename Initialized at 'temp'
   */
  function export($type, $filename = "temp")
  {
    /* Check if valid cert is loaded*/
    if ($this->type != FALSE) {
      /* Check if we must convert the cert */
      if ($this->type != $type) {
        $strConv = $this->type."TO".$type;
        $this->$strConv();
      }

      /* open file for writing */
      $fp = fopen($filename, "w+");

      if (!$fp) {
        $this->error = msgPool::cannotWriteFile($filename);
        return FALSE;
      } else {
        fwrite($fp, $this->data, strlen($this->data));
      }
      return TRUE;
    } else {
      $this->error = _("No valid certificate loaded!");
      return FALSE;
    }
    return FALSE;
  }


  /*
   * \brief Convert der to pem Certificate
   */
  function derTOpem()
  {
    /* if type is DER start convert */
    if ($this->type == DER) {
      /* converting */
      $this->type = PEM;

      $str = base64_encode($this->data);
      $len = strlen($str);

      $end = "";

      while ($len > 0 ) {
        $len  = $len - 64;
        $str1 = substr($str, 0, 64)."\n";
        $str  = substr($str, 64, $len);
        $end  .= $str1;
      }

      $strend = "-----BEGIN CERTIFICATE-----\n".$end;
      $strend .= "-----END CERTIFICATE-----";

      $this->data     = $strend;
      return TRUE;
    }
    return FALSE;
  }

  /*
   * Convert pem to der Certificate
   */
  function pemTOder()
  {
    if ($this->type == PEM) {
      $this->type = DER;

      $str = $this->data;

      $str = str_replace("-----BEGIN CERTIFICATE-----", "", $str);
      $str = str_replace("-----END CERTIFICATE-----", "", $str);

      $str = base64_decode($str);

      $this->data = $str;
      return TRUE;
    }
    return FALSE;
  }
}

?>