blob: e205229081cc67c9838bf668465448f0d983a5ac [file] [log] [blame]
Julien Boeuf9f218dd2015-04-23 10:24:02 -07001/*
2 *
David Garcia Quintas3598d442016-03-15 14:53:05 -07003 * Copyright 2015-2016, Google Inc.
Julien Boeuf9f218dd2015-04-23 10:24:02 -07004 * 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_SECURITY_CONTEXT_H
35#define GRPC_CORE_LIB_SECURITY_SECURITY_CONTEXT_H
Julien Boeuf9f218dd2015-04-23 10:24:02 -070036
Julien Boeufea456fc2015-07-07 15:23:30 -070037#include "src/core/iomgr/pollset.h"
Julien Boeuf9f218dd2015-04-23 10:24:02 -070038#include "src/core/security/credentials.h"
39
Julien Boeuf84d964a2015-04-29 11:31:06 -070040/* --- grpc_auth_context ---
41
42 High level authentication context object. Can optionally be chained. */
43
44/* Property names are always NULL terminated. */
45
Julien Boeufea456fc2015-07-07 15:23:30 -070046typedef struct {
47 grpc_auth_property *array;
48 size_t count;
49 size_t capacity;
50} grpc_auth_property_array;
51
Julien Boeuf84d964a2015-04-29 11:31:06 -070052struct grpc_auth_context {
53 struct grpc_auth_context *chained;
Julien Boeufea456fc2015-07-07 15:23:30 -070054 grpc_auth_property_array properties;
Julien Boeuf84d964a2015-04-29 11:31:06 -070055 gpr_refcount refcount;
56 const char *peer_identity_property_name;
Julien Boeuf77a7b872015-08-05 20:11:02 -070057 grpc_pollset *pollset;
Julien Boeuf84d964a2015-04-29 11:31:06 -070058};
59
Julien Boeuf77a7b872015-08-05 20:11:02 -070060/* Creation. */
61grpc_auth_context *grpc_auth_context_create(grpc_auth_context *chained);
62
Julien Boeuf84d964a2015-04-29 11:31:06 -070063/* Refcounting. */
Craig Tiller991edad2015-06-30 11:40:41 -070064#ifdef GRPC_AUTH_CONTEXT_REFCOUNT_DEBUG
65#define GRPC_AUTH_CONTEXT_REF(p, r) \
66 grpc_auth_context_ref((p), __FILE__, __LINE__, (r))
67#define GRPC_AUTH_CONTEXT_UNREF(p, r) \
68 grpc_auth_context_unref((p), __FILE__, __LINE__, (r))
69grpc_auth_context *grpc_auth_context_ref(grpc_auth_context *policy,
70 const char *file, int line,
71 const char *reason);
72void grpc_auth_context_unref(grpc_auth_context *policy, const char *file,
73 int line, const char *reason);
74#else
75#define GRPC_AUTH_CONTEXT_REF(p, r) grpc_auth_context_ref((p))
76#define GRPC_AUTH_CONTEXT_UNREF(p, r) grpc_auth_context_unref((p))
77grpc_auth_context *grpc_auth_context_ref(grpc_auth_context *policy);
78void grpc_auth_context_unref(grpc_auth_context *policy);
79#endif
Julien Boeuf84d964a2015-04-29 11:31:06 -070080
Julien Boeuf84d964a2015-04-29 11:31:06 -070081void grpc_auth_property_reset(grpc_auth_property *property);
82
83/* --- grpc_client_security_context ---
84
85 Internal client-side security context. */
86
Julien Boeuf9f218dd2015-04-23 10:24:02 -070087typedef struct {
Julien Boeuf441176d2015-10-09 21:14:07 -070088 grpc_call_credentials *creds;
Julien Boeuf84d964a2015-04-29 11:31:06 -070089 grpc_auth_context *auth_context;
Julien Boeuf9f218dd2015-04-23 10:24:02 -070090} grpc_client_security_context;
91
92grpc_client_security_context *grpc_client_security_context_create(void);
93void grpc_client_security_context_destroy(void *ctx);
94
Julien Boeuf84d964a2015-04-29 11:31:06 -070095/* --- grpc_server_security_context ---
96
97 Internal server-side security context. */
98
99typedef struct {
100 grpc_auth_context *auth_context;
101} grpc_server_security_context;
102
103grpc_server_security_context *grpc_server_security_context_create(void);
104void grpc_server_security_context_destroy(void *ctx);
105
Julien Boeuf9a529082015-10-08 13:12:14 -0700106/* --- Channel args for auth context --- */
107#define GRPC_AUTH_CONTEXT_ARG "grpc.auth_context"
Julien Boeufea456fc2015-07-07 15:23:30 -0700108
Julien Boeuf9a529082015-10-08 13:12:14 -0700109grpc_arg grpc_auth_context_to_arg(grpc_auth_context *c);
110grpc_auth_context *grpc_auth_context_from_arg(const grpc_arg *arg);
111grpc_auth_context *grpc_find_auth_context_in_args(
Julien Boeuf66a27da2015-07-21 17:17:35 -0700112 const grpc_channel_args *args);
yang-g3abe60b2015-07-06 14:00:36 -0700113
Craig Tiller9a4dddd2016-03-25 17:08:13 -0700114#endif /* GRPC_CORE_LIB_SECURITY_SECURITY_CONTEXT_H */