summaryrefslogtreecommitdiffstats
path: root/caps/PrincipalJSONHandler.h
blob: d9ef7725b3b70d3a464b7225241078d407d02e74 (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
109
110
111
112
113
114
115
116
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */

#ifndef mozilla_PrincipalJSONHandler_h
#define mozilla_PrincipalJSONHandler_h

#include <stddef.h>  // size_t
#include <stdint.h>  // uint32_t

#include "js/JSON.h"       // JS::JSONParseHandler
#include "js/TypeDecls.h"  // JS::Latin1Char

#include "mozilla/AlreadyAddRefed.h"  // already_AddRefed
#include "mozilla/RefPtr.h"           // RefPtr
#include "mozilla/Variant.h"          // Variant

#include "nsDebug.h"          // NS_WARNING
#include "nsPrintfCString.h"  // nsPrintfCString

#include "BasePrincipal.h"
#include "ContentPrincipalJSONHandler.h"
#include "ExpandedPrincipalJSONHandler.h"
#include "NullPrincipalJSONHandler.h"
#include "SharedJSONHandler.h"

namespace mozilla {

class PrincipalJSONHandlerTypes {
 public:
  enum class State {
    Init,

    // After top-level object's '{'.
    StartObject,

    // After the PrincipalKind property key for SystemPrincipal.
    SystemPrincipal_Key,
    // After the SystemPrincipal's inner object's '{'.
    SystemPrincipal_StartObject,
    // After the SystemPrincipal's inner object's '}'.
    SystemPrincipal_EndObject,

    // After the PrincipalKind property key for NullPrincipal, ContentPrincipal,
    // or ExpandedPrincipal, and also the entire inner object.
    // Delegates to mInnerHandler until the inner object's '}'.
    NullPrincipal_Inner,
    ContentPrincipal_Inner,
    ExpandedPrincipal_Inner,

    // After top-level object's '}'.
    EndObject,

    Error,
  };

  using InnerHandlerT =
      Maybe<Variant<NullPrincipalJSONHandler, ContentPrincipalJSONHandler,
                    ExpandedPrincipalJSONHandler>>;

  static constexpr bool CanContainExpandedPrincipal = true;
};

// JSON parse handler for the top-level object for principal.
//
//                                 inner object
//                                      |
//       ---------------------------------------------------------
//       |                                                       |
// {"1": {"0": "https://mozilla.com", "2": "^privateBrowsingId=1"}}
//   |
//   |
//   |
// PrincipalKind
//
// For inner object except for the system principal case, this delegates
// to NullPrincipalJSONHandler, ContentPrincipalJSONHandler, or
// ExpandedPrincipalJSONHandler.
//
//// Null principal:
// {"0":{"0":"moz-nullprincipal:{56cac540-864d-47e7-8e25-1614eab5155e}"}}
//
// Content principal:
// {"1":{"0":"https://mozilla.com"}} -> {"0":"https://mozilla.com"}
//
// Expanded principal:
// {"2":{"0":"<base64principal1>,<base64principal2>"}}
//
// System principal:
// {"3":{}}
class PrincipalJSONHandler
    : public ContainerPrincipalJSONHandler<PrincipalJSONHandlerTypes> {
  using State = PrincipalJSONHandlerTypes::State;
  using InnerHandlerT = PrincipalJSONHandlerTypes::InnerHandlerT;

 public:
  PrincipalJSONHandler() = default;
  virtual ~PrincipalJSONHandler() = default;

  virtual void error(const char* msg, uint32_t line, uint32_t column) override {
    NS_WARNING(
        nsPrintfCString("JSON Error: %s at line %u column %u of the JSON data",
                        msg, line, column)
            .get());
  }

  already_AddRefed<BasePrincipal> Get() { return mPrincipal.forget(); }

 protected:
  virtual void SetErrorState() override { mState = State::Error; }
};

}  // namespace mozilla

#endif  // mozilla_PrincipalJSONHandler_h