blob: 08ed4bfef38877c2d3297fe513ba3cd233743e32 [file] [log] [blame]
jboeufbefd2652014-12-12 15:39:47 -08001/*
2 *
David Garcia Quintas3598d442016-03-15 14:53:05 -07003 * Copyright 2015-2016, Google Inc.
jboeufbefd2652014-12-12 15:39:47 -08004 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
Craig Tiller9a4dddd2016-03-25 17:08:13 -070034#ifndef GRPC_CORE_LIB_SECURITY_JSON_TOKEN_H
35#define GRPC_CORE_LIB_SECURITY_JSON_TOKEN_H
jboeufbefd2652014-12-12 15:39:47 -080036
37#include <grpc/support/slice.h>
38#include <openssl/rsa.h>
39
Julien Boeuf54006062015-07-07 19:13:04 -070040#include "src/core/json/json.h"
41
Julien Boeuff47a5cb2015-02-18 12:24:08 -080042/* --- Constants. --- */
43
44#define GRPC_JWT_OAUTH2_AUDIENCE "https://www.googleapis.com/oauth2/v3/token"
45
Julien Boeuf54006062015-07-07 19:13:04 -070046#define GRPC_AUTH_JSON_TYPE_INVALID "invalid"
47#define GRPC_AUTH_JSON_TYPE_SERVICE_ACCOUNT "service_account"
48#define GRPC_AUTH_JSON_TYPE_AUTHORIZED_USER "authorized_user"
49
jboeuf1a809c02014-12-19 15:44:30 -080050/* --- auth_json_key parsing. --- */
jboeufbefd2652014-12-12 15:39:47 -080051
52typedef struct {
Julien Boeuf75516062015-03-07 15:10:30 -080053 const char *type;
jboeufbefd2652014-12-12 15:39:47 -080054 char *private_key_id;
55 char *client_id;
56 char *client_email;
57 RSA *private_key;
58} grpc_auth_json_key;
59
60/* Returns 1 if the object is valid, 0 otherwise. */
jboeuf1a809c02014-12-19 15:44:30 -080061int grpc_auth_json_key_is_valid(const grpc_auth_json_key *json_key);
jboeufbefd2652014-12-12 15:39:47 -080062
63/* Creates a json_key object from string. Returns an invalid object if a parsing
64 error has been encountered. */
65grpc_auth_json_key grpc_auth_json_key_create_from_string(
66 const char *json_string);
67
Julien Boeuf54006062015-07-07 19:13:04 -070068/* Creates a json_key object from parsed json. Returns an invalid object if a
69 parsing error has been encountered. */
70grpc_auth_json_key grpc_auth_json_key_create_from_json(const grpc_json *json);
71
jboeufbefd2652014-12-12 15:39:47 -080072/* Destructs the object. */
73void grpc_auth_json_key_destruct(grpc_auth_json_key *json_key);
74
jboeufab4f9142014-12-16 16:32:39 -080075/* --- json token encoding and signing. --- */
76
77/* Caller is responsible for calling gpr_free on the returned value. May return
Julien Boeuff47a5cb2015-02-18 12:24:08 -080078 NULL on invalid input. The scope parameter may be NULL. */
jboeufab4f9142014-12-16 16:32:39 -080079char *grpc_jwt_encode_and_sign(const grpc_auth_json_key *json_key,
Julien Boeuff47a5cb2015-02-18 12:24:08 -080080 const char *audience,
81 gpr_timespec token_lifetime, const char *scope);
jboeufab4f9142014-12-16 16:32:39 -080082
jboeuf1a809c02014-12-19 15:44:30 -080083/* Override encode_and_sign function for testing. */
84typedef char *(*grpc_jwt_encode_and_sign_override)(
Julien Boeuff47a5cb2015-02-18 12:24:08 -080085 const grpc_auth_json_key *json_key, const char *audience,
86 gpr_timespec token_lifetime, const char *scope);
jboeuf1a809c02014-12-19 15:44:30 -080087
88/* Set a custom encode_and_sign override for testing. */
89void grpc_jwt_encode_and_sign_set_override(
90 grpc_jwt_encode_and_sign_override func);
91
Julien Boeuf75516062015-03-07 15:10:30 -080092/* --- auth_refresh_token parsing. --- */
93
94typedef struct {
95 const char *type;
96 char *client_id;
97 char *client_secret;
98 char *refresh_token;
99} grpc_auth_refresh_token;
100
101/* Returns 1 if the object is valid, 0 otherwise. */
102int grpc_auth_refresh_token_is_valid(
103 const grpc_auth_refresh_token *refresh_token);
104
105/* Creates a refresh token object from string. Returns an invalid object if a
106 parsing error has been encountered. */
107grpc_auth_refresh_token grpc_auth_refresh_token_create_from_string(
108 const char *json_string);
109
Julien Boeuf54006062015-07-07 19:13:04 -0700110/* Creates a refresh token object from parsed json. Returns an invalid object if
111 a parsing error has been encountered. */
112grpc_auth_refresh_token grpc_auth_refresh_token_create_from_json(
113 const grpc_json *json);
114
Julien Boeuf75516062015-03-07 15:10:30 -0800115/* Destructs the object. */
116void grpc_auth_refresh_token_destruct(grpc_auth_refresh_token *refresh_token);
117
Craig Tiller9a4dddd2016-03-25 17:08:13 -0700118#endif /* GRPC_CORE_LIB_SECURITY_JSON_TOKEN_H */