summaryrefslogtreecommitdiffstats
path: root/js/src/proxy/SecurityWrapper.cpp
blob: 6b308576fd789de733b91388cae5c4605475108c (plain)
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
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
 * vim: set ts=8 sts=2 et sw=2 tw=80:
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "NamespaceImports.h"

#include "js/friend/ErrorMessages.h"  // JSMSG_*
#include "js/Wrapper.h"
#include "vm/JSObject.h"
#include "vm/StringType.h"

using namespace js;

template <class Base>
bool SecurityWrapper<Base>::enter(JSContext* cx, HandleObject wrapper,
                                  HandleId id, Wrapper::Action act,
                                  bool mayThrow, bool* bp) const {
  ReportAccessDenied(cx);
  *bp = false;
  return false;
}

template <class Base>
bool SecurityWrapper<Base>::nativeCall(JSContext* cx, IsAcceptableThis test,
                                       NativeImpl impl,
                                       const CallArgs& args) const {
  ReportAccessDenied(cx);
  return false;
}

template <class Base>
bool SecurityWrapper<Base>::setPrototype(JSContext* cx, HandleObject wrapper,
                                         HandleObject proto,
                                         ObjectOpResult& result) const {
  ReportAccessDenied(cx);
  return false;
}

template <class Base>
bool SecurityWrapper<Base>::setImmutablePrototype(JSContext* cx,
                                                  HandleObject wrapper,
                                                  bool* succeeded) const {
  ReportAccessDenied(cx);
  return false;
}

template <class Base>
bool SecurityWrapper<Base>::preventExtensions(JSContext* cx,
                                              HandleObject wrapper,
                                              ObjectOpResult& result) const {
  // Just like BaseProxyHandler, SecurityWrappers claim by default to always
  // be extensible, so as not to leak information about the state of the
  // underlying wrapped thing.
  return result.fail(JSMSG_CANT_CHANGE_EXTENSIBILITY);
}

template <class Base>
bool SecurityWrapper<Base>::isExtensible(JSContext* cx, HandleObject wrapper,
                                         bool* extensible) const {
  // See above.
  *extensible = true;
  return true;
}

template <class Base>
bool SecurityWrapper<Base>::getBuiltinClass(JSContext* cx, HandleObject wrapper,
                                            ESClass* cls) const {
  *cls = ESClass::Other;
  return true;
}

template <class Base>
bool SecurityWrapper<Base>::isArray(JSContext* cx, HandleObject obj,
                                    JS::IsArrayAnswer* answer) const {
  // This should ReportAccessDenied(cx), but bug 849730 disagrees.  :-(
  *answer = JS::IsArrayAnswer::NotArray;
  return true;
}

template <class Base>
RegExpShared* SecurityWrapper<Base>::regexp_toShared(JSContext* cx,
                                                     HandleObject obj) const {
  return Base::regexp_toShared(cx, obj);
}

template <class Base>
bool SecurityWrapper<Base>::boxedValue_unbox(JSContext* cx, HandleObject obj,
                                             MutableHandleValue vp) const {
  vp.setUndefined();
  return true;
}

template <class Base>
bool SecurityWrapper<Base>::defineProperty(JSContext* cx, HandleObject wrapper,
                                           HandleId id,
                                           Handle<PropertyDescriptor> desc,
                                           ObjectOpResult& result) const {
  if (desc.isAccessorDescriptor()) {
    return Throw(cx, id, JSMSG_ACCESSOR_DEF_DENIED);
  }

  return Base::defineProperty(cx, wrapper, id, desc, result);
}

template class js::SecurityWrapper<Wrapper>;
template class js::SecurityWrapper<CrossCompartmentWrapper>;