The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/kgssapi/gss_names.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*-
    2  * Copyright (c) 2005 Doug Rabson
    3  * All rights reserved.
    4  *
    5  * Redistribution and use in source and binary forms, with or without
    6  * modification, are permitted provided that the following conditions
    7  * are met:
    8  * 1. Redistributions of source code must retain the above copyright
    9  *    notice, this list of conditions and the following disclaimer.
   10  * 2. Redistributions in binary form must reproduce the above copyright
   11  *    notice, this list of conditions and the following disclaimer in the
   12  *    documentation and/or other materials provided with the distribution.
   13  *
   14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
   15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
   18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   24  * SUCH DAMAGE.
   25  */
   26 
   27 #include <sys/cdefs.h>
   28 __FBSDID("$FreeBSD: releng/10.0/sys/kgssapi/gss_names.c 184588 2008-11-03 10:38:00Z dfr $");
   29 
   30 #include <sys/param.h>
   31 #include <kgssapi/gssapi.h>
   32 
   33 /*
   34  * The implementation must reserve static storage for a
   35  * gss_OID_desc object containing the value
   36  * {10, (void *)"\x2a\x86\x48\x86\xf7\x12"
   37  * "\x01\x02\x01\x01"},
   38  * corresponding to an object-identifier value of
   39  * {iso(1) member-body(2) United States(840) mit(113554)
   40  * infosys(1) gssapi(2) generic(1) user_name(1)}.  The constant
   41  * GSS_C_NT_USER_NAME should be initialized to point
   42  * to that gss_OID_desc.
   43  */
   44 static gss_OID_desc GSS_C_NT_USER_NAME_storage =
   45         {10, (void *)(uintptr_t)"\x2a\x86\x48\x86\xf7\x12\x01\x02\x01\x01"};
   46 gss_OID GSS_C_NT_USER_NAME = &GSS_C_NT_USER_NAME_storage;
   47 
   48 /*
   49  * The implementation must reserve static storage for a
   50  * gss_OID_desc object containing the value
   51  * {10, (void *)"\x2a\x86\x48\x86\xf7\x12"
   52  *              "\x01\x02\x01\x02"},
   53  * corresponding to an object-identifier value of
   54  * {iso(1) member-body(2) United States(840) mit(113554)
   55  * infosys(1) gssapi(2) generic(1) machine_uid_name(2)}.
   56  * The constant GSS_C_NT_MACHINE_UID_NAME should be
   57  * initialized to point to that gss_OID_desc.
   58  */
   59 static gss_OID_desc GSS_C_NT_MACHINE_UID_NAME_storage =
   60         {10, (void *)(uintptr_t)"\x2a\x86\x48\x86\xf7\x12\x01\x02\x01\x02"};
   61 gss_OID GSS_C_NT_MACHINE_UID_NAME = &GSS_C_NT_MACHINE_UID_NAME_storage;
   62 
   63 /*
   64  * The implementation must reserve static storage for a
   65  * gss_OID_desc object containing the value
   66  * {10, (void *)"\x2a\x86\x48\x86\xf7\x12"
   67  *              "\x01\x02\x01\x03"},
   68  * corresponding to an object-identifier value of
   69  * {iso(1) member-body(2) United States(840) mit(113554)
   70  * infosys(1) gssapi(2) generic(1) string_uid_name(3)}.
   71  * The constant GSS_C_NT_STRING_UID_NAME should be
   72  * initialized to point to that gss_OID_desc.
   73  */
   74 static gss_OID_desc GSS_C_NT_STRING_UID_NAME_storage =
   75         {10, (void *)(uintptr_t)"\x2a\x86\x48\x86\xf7\x12\x01\x02\x01\x03"};
   76 gss_OID GSS_C_NT_STRING_UID_NAME = &GSS_C_NT_STRING_UID_NAME_storage;
   77 
   78 /*
   79  * The implementation must reserve static storage for a
   80  * gss_OID_desc object containing the value
   81  * {6, (void *)"\x2b\x06\x01\x05\x06\x02"},
   82  * corresponding to an object-identifier value of
   83  * {iso(1) org(3) dod(6) internet(1) security(5)
   84  * nametypes(6) gss-host-based-services(2)).  The constant
   85  * GSS_C_NT_HOSTBASED_SERVICE_X should be initialized to point
   86  * to that gss_OID_desc.  This is a deprecated OID value, and
   87  * implementations wishing to support hostbased-service names
   88  * should instead use the GSS_C_NT_HOSTBASED_SERVICE OID,
   89  * defined below, to identify such names;
   90  * GSS_C_NT_HOSTBASED_SERVICE_X should be accepted a synonym
   91  * for GSS_C_NT_HOSTBASED_SERVICE when presented as an input
   92  * parameter, but should not be emitted by GSS-API
   93  * implementations
   94  */
   95 static gss_OID_desc GSS_C_NT_HOSTBASED_SERVICE_X_storage =
   96         {6, (void *)(uintptr_t)"\x2b\x06\x01\x05\x06\x02"};
   97 gss_OID GSS_C_NT_HOSTBASED_SERVICE_X = &GSS_C_NT_HOSTBASED_SERVICE_X_storage;
   98 
   99 /*
  100  * The implementation must reserve static storage for a
  101  * gss_OID_desc object containing the value
  102  * {10, (void *)"\x2a\x86\x48\x86\xf7\x12"
  103  *              "\x01\x02\x01\x04"}, corresponding to an
  104  * object-identifier value of {iso(1) member-body(2)
  105  * Unites States(840) mit(113554) infosys(1) gssapi(2)
  106  * generic(1) service_name(4)}.  The constant
  107  * GSS_C_NT_HOSTBASED_SERVICE should be initialized
  108  * to point to that gss_OID_desc.
  109  */
  110 static gss_OID_desc GSS_C_NT_HOSTBASED_SERVICE_storage =
  111         {10, (void *)(uintptr_t)"\x2a\x86\x48\x86\xf7\x12\x01\x02\x01\x04"};
  112 gss_OID GSS_C_NT_HOSTBASED_SERVICE = &GSS_C_NT_HOSTBASED_SERVICE_storage;
  113 
  114 /*
  115  * The implementation must reserve static storage for a
  116  * gss_OID_desc object containing the value
  117  * {6, (void *)"\x2b\x06\01\x05\x06\x03"},
  118  * corresponding to an object identifier value of
  119  * {1(iso), 3(org), 6(dod), 1(internet), 5(security),
  120  * 6(nametypes), 3(gss-anonymous-name)}.  The constant
  121  * and GSS_C_NT_ANONYMOUS should be initialized to point
  122  * to that gss_OID_desc.
  123  */
  124 static gss_OID_desc GSS_C_NT_ANONYMOUS_storage =
  125         {6, (void *)(uintptr_t)"\x2b\x06\01\x05\x06\x03"};
  126 gss_OID GSS_C_NT_ANONYMOUS = &GSS_C_NT_ANONYMOUS_storage;
  127 
  128 /*
  129  * The implementation must reserve static storage for a
  130  * gss_OID_desc object containing the value
  131  * {6, (void *)"\x2b\x06\x01\x05\x06\x04"},
  132  * corresponding to an object-identifier value of
  133  * {1(iso), 3(org), 6(dod), 1(internet), 5(security),
  134  * 6(nametypes), 4(gss-api-exported-name)}.  The constant
  135  * GSS_C_NT_EXPORT_NAME should be initialized to point
  136  * to that gss_OID_desc.
  137  */
  138 static gss_OID_desc GSS_C_NT_EXPORT_NAME_storage =
  139         {6, (void *)(uintptr_t)"\x2b\x06\x01\x05\x06\x04"};
  140 gss_OID GSS_C_NT_EXPORT_NAME = &GSS_C_NT_EXPORT_NAME_storage;
  141 
  142 /*
  143  *   This name form shall be represented by the Object Identifier {iso(1)
  144  *   member-body(2) United States(840) mit(113554) infosys(1) gssapi(2)
  145  *   krb5(2) krb5_name(1)}.  The recommended symbolic name for this type
  146  *   is "GSS_KRB5_NT_PRINCIPAL_NAME".
  147  */
  148 static gss_OID_desc GSS_KRB5_NT_PRINCIPAL_NAME_storage =
  149         {10, (void *)(uintptr_t)"\x2a\x86\x48\x86\xf7\x12\x01\x02\x02\x01"};
  150 gss_OID GSS_KRB5_NT_PRINCIPAL_NAME = &GSS_KRB5_NT_PRINCIPAL_NAME_storage;
  151 
  152 /*
  153  * This name form shall be represented by the Object Identifier {iso(1)
  154  * member-body(2) United States(840) mit(113554) infosys(1) gssapi(2)
  155  * generic(1) user_name(1)}.  The recommended symbolic name for this
  156  * type is "GSS_KRB5_NT_USER_NAME".
  157  */
  158 gss_OID GSS_KRB5_NT_USER_NAME = &GSS_C_NT_USER_NAME_storage;
  159 
  160 /*
  161  * This name form shall be represented by the Object Identifier {iso(1)
  162  * member-body(2) United States(840) mit(113554) infosys(1) gssapi(2)
  163  * generic(1) machine_uid_name(2)}.  The recommended symbolic name for
  164  * this type is "GSS_KRB5_NT_MACHINE_UID_NAME".
  165  */
  166 gss_OID GSS_KRB5_NT_MACHINE_UID_NAME = &GSS_C_NT_MACHINE_UID_NAME_storage;
  167 
  168 /*
  169  * This name form shall be represented by the Object Identifier {iso(1)
  170  * member-body(2) United States(840) mit(113554) infosys(1) gssapi(2)
  171  * generic(1) string_uid_name(3)}.  The recommended symbolic name for
  172  * this type is "GSS_KRB5_NT_STRING_UID_NAME".
  173  */
  174 gss_OID GSS_KRB5_NT_STRING_UID_NAME = &GSS_C_NT_STRING_UID_NAME_storage;
  175 
  176 

Cache object: 8465a6c4b2e4472259f2c07f7c6cd333


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.