/crypto/external/bsd/heimdal/dist/lib/ipc/hi_locl.h

http://www.minix3.org/ · C++ Header · 85 lines · 34 code · 16 blank · 35 comment · 1 complexity · 2b18cd812525038301a72c6a064b39c8 MD5 · raw file

  1. /* $NetBSD: hi_locl.h,v 1.1.1.1 2011/04/13 18:15:28 elric Exp $ */
  2. /*
  3. * Copyright (c) 2009 Kungliga Tekniska Högskolan
  4. * (Royal Institute of Technology, Stockholm, Sweden).
  5. * All rights reserved.
  6. *
  7. * Portions Copyright (c) 2009 Apple Inc. All rights reserved.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. *
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. *
  16. * 2. Redistributions in binary form must reproduce the above copyright
  17. * notice, this list of conditions and the following disclaimer in the
  18. * documentation and/or other materials provided with the distribution.
  19. *
  20. * 3. Neither the name of the Institute nor the names of its contributors
  21. * may be used to endorse or promote products derived from this software
  22. * without specific prior written permission.
  23. *
  24. * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
  25. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  26. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  27. * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
  28. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  30. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  31. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  32. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  33. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  34. * SUCH DAMAGE.
  35. */
  36. #include "config.h"
  37. #include <sys/types.h>
  38. #include <sys/socket.h>
  39. #ifdef HAVE_SYS_UN_H
  40. #include <sys/un.h>
  41. #endif
  42. #include <sys/poll.h>
  43. #include <ctype.h>
  44. #include <stdio.h>
  45. #include <stdlib.h>
  46. #include <string.h>
  47. #include <errno.h>
  48. #ifdef HAVE_GETPEERUCRED
  49. #include <ucred.h>
  50. #endif
  51. #include <krb5/krb5-types.h>
  52. #include <krb5/asn1-common.h>
  53. #include <krb5/heimbase.h>
  54. #include <krb5/base64.h>
  55. #include <heim-ipc.h>
  56. #if defined(__APPLE__) && defined(HAVE_GCD)
  57. #include <mach/mach.h>
  58. #include <servers/bootstrap.h>
  59. #include <dispatch/dispatch.h>
  60. #include <bsm/libbsm.h>
  61. #ifndef __APPLE_PRIVATE__ /* awe, using private interface */
  62. typedef boolean_t (*dispatch_mig_callback_t)(mach_msg_header_t *message, mach_msg_header_t *reply);
  63. mach_msg_return_t
  64. dispatch_mig_server(dispatch_source_t ds, size_t maxmsgsz, dispatch_mig_callback_t callback);
  65. #endif
  66. #endif
  67. #include <krb5/roken.h>
  68. int
  69. _heim_ipc_create_cred(uid_t, gid_t, pid_t, pid_t, heim_icred *);