-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsecurity-exception.cpp
74 lines (61 loc) · 2.57 KB
/
security-exception.cpp
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
/*
+----------------------------------------------------------------------+
| PHP Version 7 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2017 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Sara Golemon <pollita@php.net> |
+----------------------------------------------------------------------+
*/
#include "darwin.h"
#include "zend_exceptions.h"
namespace php { namespace darwin {
static zend_class_entry *security_exception_ce = nullptr;
SecurityException::SecurityException(OSStatus status, const char *format, ...):
m_status(status) {
va_list args;
va_start(args, format);
auto len = zend_vspprintf(&m_message, 0, format, args);
va_end(args);
// Can other frameworks produce OSStatus codes?
CFUniquePtr<CFStringRef> secmsg(SecCopyErrorMessageString(status, nullptr));
auto *zstr = zend_string_from_CFString(secmsg.get(), false);
if (zstr && ZSTR_LEN(zstr)) {
if (len) {
// Two messages, concat them.
char *str;
zend_spprintf(&str, 0, "%s: %s", m_message, ZSTR_VAL(zstr));
efree(m_message);
m_message = str;
} else {
// No local message, use OSStatus as-is
efree(m_message);
m_message = estrndup(ZSTR_VAL(zstr), ZSTR_LEN(zstr));
}
} // else use format message as-is
if (zstr) {
zend_string_release(zstr);
}
}
SecurityException::~SecurityException() {
if (m_message) { efree(m_message); }
}
void SecurityException::throwZendException() const {
zend_throw_exception(security_exception_ce, m_message, (zend_long)m_status);
}
PHP_MINIT_FUNCTION(darwin_SecurityException) {
zend_class_entry ce;
INIT_CLASS_ENTRY(ce, "Darwin\\SecurityException", nullptr);
security_exception_ce = zend_register_internal_class_ex(&ce, zend_ce_exception);
security_exception_ce->ce_flags |= ZEND_ACC_FINAL;
return SUCCESS;
}
}} // namespace php::darwin