1 // SPDX-License-Identifier: GPL-2.0+
3 * GSS Proxy upcall module
5 * Copyright (C) 2012 Simo Sorce <simo@redhat.com>
8 #include <linux/sunrpc/svcauth.h>
9 #include "gss_rpc_xdr.h"
11 static int gssx_enc_bool(struct xdr_stream
*xdr
, int v
)
15 p
= xdr_reserve_space(xdr
, 4);
16 if (unlikely(p
== NULL
))
18 *p
= v
? xdr_one
: xdr_zero
;
22 static int gssx_dec_bool(struct xdr_stream
*xdr
, u32
*v
)
26 p
= xdr_inline_decode(xdr
, 4);
27 if (unlikely(p
== NULL
))
33 static int gssx_enc_buffer(struct xdr_stream
*xdr
,
34 const gssx_buffer
*buf
)
38 p
= xdr_reserve_space(xdr
, sizeof(u32
) + buf
->len
);
41 xdr_encode_opaque(p
, buf
->data
, buf
->len
);
45 static int gssx_enc_in_token(struct xdr_stream
*xdr
,
46 const struct gssp_in_token
*in
)
50 p
= xdr_reserve_space(xdr
, 4);
53 *p
= cpu_to_be32(in
->page_len
);
55 /* all we need to do is to write pages */
56 xdr_write_pages(xdr
, in
->pages
, in
->page_base
, in
->page_len
);
62 static int gssx_dec_buffer(struct xdr_stream
*xdr
,
68 p
= xdr_inline_decode(xdr
, 4);
69 if (unlikely(p
== NULL
))
72 length
= be32_to_cpup(p
);
73 p
= xdr_inline_decode(xdr
, length
);
74 if (unlikely(p
== NULL
))
78 /* we intentionally are not interested in this buffer */
81 if (length
> buf
->len
)
85 buf
->data
= kmemdup(p
, length
, GFP_KERNEL
);
89 memcpy(buf
->data
, p
, length
);
95 static int gssx_enc_option(struct xdr_stream
*xdr
,
96 struct gssx_option
*opt
)
100 err
= gssx_enc_buffer(xdr
, &opt
->option
);
103 err
= gssx_enc_buffer(xdr
, &opt
->value
);
107 static int gssx_dec_option(struct xdr_stream
*xdr
,
108 struct gssx_option
*opt
)
112 err
= gssx_dec_buffer(xdr
, &opt
->option
);
115 err
= gssx_dec_buffer(xdr
, &opt
->value
);
119 static int dummy_enc_opt_array(struct xdr_stream
*xdr
,
120 const struct gssx_option_array
*oa
)
127 p
= xdr_reserve_space(xdr
, 4);
135 static int dummy_dec_opt_array(struct xdr_stream
*xdr
,
136 struct gssx_option_array
*oa
)
138 struct gssx_option dummy
;
142 p
= xdr_inline_decode(xdr
, 4);
143 if (unlikely(p
== NULL
))
145 count
= be32_to_cpup(p
++);
146 memset(&dummy
, 0, sizeof(dummy
));
147 for (i
= 0; i
< count
; i
++) {
148 gssx_dec_option(xdr
, &dummy
);
156 static int get_host_u32(struct xdr_stream
*xdr
, u32
*res
)
160 p
= xdr_inline_decode(xdr
, 4);
163 /* Contents of linux creds are all host-endian: */
164 memcpy(res
, p
, sizeof(u32
));
168 static int gssx_dec_linux_creds(struct xdr_stream
*xdr
,
169 struct svc_cred
*creds
)
177 p
= xdr_inline_decode(xdr
, 4);
178 if (unlikely(p
== NULL
))
181 length
= be32_to_cpup(p
);
183 if (length
> (3 + NGROUPS_MAX
) * sizeof(u32
))
187 err
= get_host_u32(xdr
, &tmp
);
190 creds
->cr_uid
= make_kuid(&init_user_ns
, tmp
);
193 err
= get_host_u32(xdr
, &tmp
);
196 creds
->cr_gid
= make_kgid(&init_user_ns
, tmp
);
198 /* number of additional gid's */
199 err
= get_host_u32(xdr
, &tmp
);
203 if ((3 + N
) * sizeof(u32
) != length
)
205 creds
->cr_group_info
= groups_alloc(N
);
206 if (creds
->cr_group_info
== NULL
)
210 for (i
= 0; i
< N
; i
++) {
212 err
= get_host_u32(xdr
, &tmp
);
214 goto out_free_groups
;
216 kgid
= make_kgid(&init_user_ns
, tmp
);
217 if (!gid_valid(kgid
))
218 goto out_free_groups
;
219 creds
->cr_group_info
->gid
[i
] = kgid
;
221 groups_sort(creds
->cr_group_info
);
225 groups_free(creds
->cr_group_info
);
229 static int gssx_dec_option_array(struct xdr_stream
*xdr
,
230 struct gssx_option_array
*oa
)
232 struct svc_cred
*creds
;
237 p
= xdr_inline_decode(xdr
, 4);
238 if (unlikely(p
== NULL
))
240 count
= be32_to_cpup(p
++);
244 /* we recognize only 1 currently: CREDS_VALUE */
247 oa
->data
= kmalloc(sizeof(struct gssx_option
), GFP_KERNEL
);
251 creds
= kzalloc(sizeof(struct svc_cred
), GFP_KERNEL
);
257 oa
->data
[0].option
.data
= CREDS_VALUE
;
258 oa
->data
[0].option
.len
= sizeof(CREDS_VALUE
);
259 oa
->data
[0].value
.data
= (void *)creds
;
260 oa
->data
[0].value
.len
= 0;
262 for (i
= 0; i
< count
; i
++) {
263 gssx_buffer dummy
= { 0, NULL
};
267 p
= xdr_inline_decode(xdr
, 4);
268 if (unlikely(p
== NULL
))
271 length
= be32_to_cpup(p
);
272 p
= xdr_inline_decode(xdr
, length
);
273 if (unlikely(p
== NULL
))
276 if (length
== sizeof(CREDS_VALUE
) &&
277 memcmp(p
, CREDS_VALUE
, sizeof(CREDS_VALUE
)) == 0) {
278 /* We have creds here. parse them */
279 err
= gssx_dec_linux_creds(xdr
, creds
);
282 oa
->data
[0].value
.len
= 1; /* presence */
284 /* consume uninteresting buffer */
285 err
= gssx_dec_buffer(xdr
, &dummy
);
293 static int gssx_dec_status(struct xdr_stream
*xdr
,
294 struct gssx_status
*status
)
299 /* status->major_status */
300 p
= xdr_inline_decode(xdr
, 8);
301 if (unlikely(p
== NULL
))
303 p
= xdr_decode_hyper(p
, &status
->major_status
);
306 err
= gssx_dec_buffer(xdr
, &status
->mech
);
310 /* status->minor_status */
311 p
= xdr_inline_decode(xdr
, 8);
312 if (unlikely(p
== NULL
))
314 p
= xdr_decode_hyper(p
, &status
->minor_status
);
316 /* status->major_status_string */
317 err
= gssx_dec_buffer(xdr
, &status
->major_status_string
);
321 /* status->minor_status_string */
322 err
= gssx_dec_buffer(xdr
, &status
->minor_status_string
);
326 /* status->server_ctx */
327 err
= gssx_dec_buffer(xdr
, &status
->server_ctx
);
331 /* we assume we have no options for now, so simply consume them */
332 /* status->options */
333 err
= dummy_dec_opt_array(xdr
, &status
->options
);
338 static int gssx_enc_call_ctx(struct xdr_stream
*xdr
,
339 const struct gssx_call_ctx
*ctx
)
341 struct gssx_option opt
;
346 err
= gssx_enc_buffer(xdr
, &ctx
->locale
);
350 /* ctx->server_ctx */
351 err
= gssx_enc_buffer(xdr
, &ctx
->server_ctx
);
355 /* we always want to ask for lucid contexts */
357 p
= xdr_reserve_space(xdr
, 4);
360 /* we want a lucid_v1 context */
361 opt
.option
.data
= LUCID_OPTION
;
362 opt
.option
.len
= sizeof(LUCID_OPTION
);
363 opt
.value
.data
= LUCID_VALUE
;
364 opt
.value
.len
= sizeof(LUCID_VALUE
);
365 err
= gssx_enc_option(xdr
, &opt
);
367 /* ..and user creds */
368 opt
.option
.data
= CREDS_OPTION
;
369 opt
.option
.len
= sizeof(CREDS_OPTION
);
370 opt
.value
.data
= CREDS_VALUE
;
371 opt
.value
.len
= sizeof(CREDS_VALUE
);
372 err
= gssx_enc_option(xdr
, &opt
);
377 static int gssx_dec_name_attr(struct xdr_stream
*xdr
,
378 struct gssx_name_attr
*attr
)
383 err
= gssx_dec_buffer(xdr
, &attr
->attr
);
388 err
= gssx_dec_buffer(xdr
, &attr
->value
);
392 /* attr->extensions */
393 err
= dummy_dec_opt_array(xdr
, &attr
->extensions
);
398 static int dummy_enc_nameattr_array(struct xdr_stream
*xdr
,
399 struct gssx_name_attr_array
*naa
)
406 p
= xdr_reserve_space(xdr
, 4);
414 static int dummy_dec_nameattr_array(struct xdr_stream
*xdr
,
415 struct gssx_name_attr_array
*naa
)
417 struct gssx_name_attr dummy
= { .attr
= {.len
= 0} };
421 p
= xdr_inline_decode(xdr
, 4);
422 if (unlikely(p
== NULL
))
424 count
= be32_to_cpup(p
++);
425 for (i
= 0; i
< count
; i
++) {
426 gssx_dec_name_attr(xdr
, &dummy
);
434 static struct xdr_netobj zero_netobj
= {};
436 static struct gssx_name_attr_array zero_name_attr_array
= {};
438 static struct gssx_option_array zero_option_array
= {};
440 static int gssx_enc_name(struct xdr_stream
*xdr
,
441 struct gssx_name
*name
)
445 /* name->display_name */
446 err
= gssx_enc_buffer(xdr
, &name
->display_name
);
450 /* name->name_type */
451 err
= gssx_enc_buffer(xdr
, &zero_netobj
);
455 /* name->exported_name */
456 err
= gssx_enc_buffer(xdr
, &zero_netobj
);
460 /* name->exported_composite_name */
461 err
= gssx_enc_buffer(xdr
, &zero_netobj
);
465 /* leave name_attributes empty for now, will add once we have any
466 * to pass up at all */
467 /* name->name_attributes */
468 err
= dummy_enc_nameattr_array(xdr
, &zero_name_attr_array
);
472 /* leave options empty for now, will add once we have any options
473 * to pass up at all */
474 /* name->extensions */
475 err
= dummy_enc_opt_array(xdr
, &zero_option_array
);
481 static int gssx_dec_name(struct xdr_stream
*xdr
,
482 struct gssx_name
*name
)
484 struct xdr_netobj dummy_netobj
= { .len
= 0 };
485 struct gssx_name_attr_array dummy_name_attr_array
= { .count
= 0 };
486 struct gssx_option_array dummy_option_array
= { .count
= 0 };
489 /* name->display_name */
490 err
= gssx_dec_buffer(xdr
, &name
->display_name
);
494 /* name->name_type */
495 err
= gssx_dec_buffer(xdr
, &dummy_netobj
);
499 /* name->exported_name */
500 err
= gssx_dec_buffer(xdr
, &dummy_netobj
);
504 /* name->exported_composite_name */
505 err
= gssx_dec_buffer(xdr
, &dummy_netobj
);
509 /* we assume we have no attributes for now, so simply consume them */
510 /* name->name_attributes */
511 err
= dummy_dec_nameattr_array(xdr
, &dummy_name_attr_array
);
515 /* we assume we have no options for now, so simply consume them */
516 /* name->extensions */
517 err
= dummy_dec_opt_array(xdr
, &dummy_option_array
);
522 static int dummy_enc_credel_array(struct xdr_stream
*xdr
,
523 struct gssx_cred_element_array
*cea
)
530 p
= xdr_reserve_space(xdr
, 4);
538 static int gssx_enc_cred(struct xdr_stream
*xdr
,
539 struct gssx_cred
*cred
)
543 /* cred->desired_name */
544 err
= gssx_enc_name(xdr
, &cred
->desired_name
);
549 err
= dummy_enc_credel_array(xdr
, &cred
->elements
);
553 /* cred->cred_handle_reference */
554 err
= gssx_enc_buffer(xdr
, &cred
->cred_handle_reference
);
558 /* cred->needs_release */
559 err
= gssx_enc_bool(xdr
, cred
->needs_release
);
564 static int gssx_enc_ctx(struct xdr_stream
*xdr
,
565 struct gssx_ctx
*ctx
)
570 /* ctx->exported_context_token */
571 err
= gssx_enc_buffer(xdr
, &ctx
->exported_context_token
);
576 err
= gssx_enc_buffer(xdr
, &ctx
->state
);
580 /* ctx->need_release */
581 err
= gssx_enc_bool(xdr
, ctx
->need_release
);
586 err
= gssx_enc_buffer(xdr
, &ctx
->mech
);
591 err
= gssx_enc_name(xdr
, &ctx
->src_name
);
596 err
= gssx_enc_name(xdr
, &ctx
->targ_name
);
601 p
= xdr_reserve_space(xdr
, 8+8);
604 p
= xdr_encode_hyper(p
, ctx
->lifetime
);
607 p
= xdr_encode_hyper(p
, ctx
->ctx_flags
);
609 /* ctx->locally_initiated */
610 err
= gssx_enc_bool(xdr
, ctx
->locally_initiated
);
615 err
= gssx_enc_bool(xdr
, ctx
->open
);
619 /* leave options empty for now, will add once we have any options
620 * to pass up at all */
622 err
= dummy_enc_opt_array(xdr
, &ctx
->options
);
627 static int gssx_dec_ctx(struct xdr_stream
*xdr
,
628 struct gssx_ctx
*ctx
)
633 /* ctx->exported_context_token */
634 err
= gssx_dec_buffer(xdr
, &ctx
->exported_context_token
);
639 err
= gssx_dec_buffer(xdr
, &ctx
->state
);
643 /* ctx->need_release */
644 err
= gssx_dec_bool(xdr
, &ctx
->need_release
);
649 err
= gssx_dec_buffer(xdr
, &ctx
->mech
);
654 err
= gssx_dec_name(xdr
, &ctx
->src_name
);
659 err
= gssx_dec_name(xdr
, &ctx
->targ_name
);
664 p
= xdr_inline_decode(xdr
, 8+8);
665 if (unlikely(p
== NULL
))
667 p
= xdr_decode_hyper(p
, &ctx
->lifetime
);
670 p
= xdr_decode_hyper(p
, &ctx
->ctx_flags
);
672 /* ctx->locally_initiated */
673 err
= gssx_dec_bool(xdr
, &ctx
->locally_initiated
);
678 err
= gssx_dec_bool(xdr
, &ctx
->open
);
682 /* we assume we have no options for now, so simply consume them */
684 err
= dummy_dec_opt_array(xdr
, &ctx
->options
);
689 static int gssx_enc_cb(struct xdr_stream
*xdr
, struct gssx_cb
*cb
)
694 /* cb->initiator_addrtype */
695 p
= xdr_reserve_space(xdr
, 8);
698 p
= xdr_encode_hyper(p
, cb
->initiator_addrtype
);
700 /* cb->initiator_address */
701 err
= gssx_enc_buffer(xdr
, &cb
->initiator_address
);
705 /* cb->acceptor_addrtype */
706 p
= xdr_reserve_space(xdr
, 8);
709 p
= xdr_encode_hyper(p
, cb
->acceptor_addrtype
);
711 /* cb->acceptor_address */
712 err
= gssx_enc_buffer(xdr
, &cb
->acceptor_address
);
716 /* cb->application_data */
717 err
= gssx_enc_buffer(xdr
, &cb
->application_data
);
722 void gssx_enc_accept_sec_context(struct rpc_rqst
*req
,
723 struct xdr_stream
*xdr
,
726 const struct gssx_arg_accept_sec_context
*arg
= data
;
729 err
= gssx_enc_call_ctx(xdr
, &arg
->call_ctx
);
733 /* arg->context_handle */
734 if (arg
->context_handle
)
735 err
= gssx_enc_ctx(xdr
, arg
->context_handle
);
737 err
= gssx_enc_bool(xdr
, 0);
741 /* arg->cred_handle */
742 if (arg
->cred_handle
)
743 err
= gssx_enc_cred(xdr
, arg
->cred_handle
);
745 err
= gssx_enc_bool(xdr
, 0);
749 /* arg->input_token */
750 err
= gssx_enc_in_token(xdr
, &arg
->input_token
);
756 err
= gssx_enc_cb(xdr
, arg
->input_cb
);
758 err
= gssx_enc_bool(xdr
, 0);
762 err
= gssx_enc_bool(xdr
, arg
->ret_deleg_cred
);
766 /* leave options empty for now, will add once we have any options
767 * to pass up at all */
769 err
= dummy_enc_opt_array(xdr
, &arg
->options
);
771 xdr_inline_pages(&req
->rq_rcv_buf
,
772 PAGE_SIZE
/2 /* pretty arbitrary */,
773 arg
->pages
, 0 /* page base */, arg
->npages
* PAGE_SIZE
);
776 dprintk("RPC: gssx_enc_accept_sec_context: %d\n", err
);
779 int gssx_dec_accept_sec_context(struct rpc_rqst
*rqstp
,
780 struct xdr_stream
*xdr
,
783 struct gssx_res_accept_sec_context
*res
= data
;
786 struct page
*scratch
;
788 scratch
= alloc_page(GFP_KERNEL
);
791 xdr_set_scratch_page(xdr
, scratch
);
794 err
= gssx_dec_status(xdr
, &res
->status
);
798 /* res->context_handle */
799 err
= gssx_dec_bool(xdr
, &value_follows
);
803 err
= gssx_dec_ctx(xdr
, res
->context_handle
);
807 res
->context_handle
= NULL
;
810 /* res->output_token */
811 err
= gssx_dec_bool(xdr
, &value_follows
);
815 err
= gssx_dec_buffer(xdr
, res
->output_token
);
819 res
->output_token
= NULL
;
822 /* res->delegated_cred_handle */
823 err
= gssx_dec_bool(xdr
, &value_follows
);
827 /* we do not support upcall servers sending this data. */
833 err
= gssx_dec_option_array(xdr
, &res
->options
);
836 __free_page(scratch
);