s4:torture: Adapt KDC canon test to Heimdal upstream changes
[samba.git] / third_party / heimdal / lib / krb5 / store_sock.c
1 /*
2  * Copyright (c) 1997 - 2004 Kungliga Tekniska Högskolan
3  * (Royal Institute of Technology, Stockholm, Sweden).
4  * 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
8  * are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * 3. Neither the name of the Institute nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #include "krb5_locl.h"
35 #include "store-int.h"
36
37 #ifdef _WIN32
38 #include <winsock2.h>
39 #endif
40
41 typedef struct socket_storage {
42     krb5_socket_t sock;
43 } socket_storage;
44
45 #define SOCK(S) (((socket_storage*)(S)->data)->sock)
46
47 static ssize_t
48 socket_fetch(krb5_storage * sp, void *data, size_t size)
49 {
50     return net_read(SOCK(sp), data, size);
51 }
52
53 static ssize_t
54 socket_store(krb5_storage * sp, const void *data, size_t size)
55 {
56     return net_write(SOCK(sp), data, size);
57 }
58
59 static off_t
60 socket_seek(krb5_storage * sp, off_t offset, int whence)
61 {
62     return lseek(SOCK(sp), offset, whence);
63 }
64
65 static int
66 socket_trunc(krb5_storage * sp, off_t offset)
67 {
68     if (ftruncate(SOCK(sp), offset) == -1)
69         return errno;
70     return 0;
71 }
72
73 static int
74 socket_sync(krb5_storage * sp)
75 {
76     if (fsync(SOCK(sp)) == -1)
77         return errno;
78     return 0;
79 }
80
81 static void
82 socket_free(krb5_storage * sp)
83 {
84     int save_errno = errno;
85     if (rk_IS_SOCKET_ERROR(rk_closesocket(SOCK(sp))))
86         errno = rk_SOCK_ERRNO;
87     else
88         errno = save_errno;
89 }
90
91 /**
92  *
93  *
94  * @return A krb5_storage on success, or NULL on out of memory error.
95  *
96  * @ingroup krb5_storage
97  *
98  * @sa krb5_storage_emem()
99  * @sa krb5_storage_from_mem()
100  * @sa krb5_storage_from_readonly_mem()
101  * @sa krb5_storage_from_data()
102  * @sa krb5_storage_from_fd()
103  */
104
105 KRB5_LIB_FUNCTION krb5_storage * KRB5_LIB_CALL
106 krb5_storage_from_socket(krb5_socket_t sock_in)
107 {
108     krb5_storage *sp;
109     int saved_errno;
110     krb5_socket_t sock;
111
112 #ifdef _WIN32
113     WSAPROTOCOL_INFO info;
114
115     sock = rk_INVALID_SOCKET;
116     if (WSADuplicateSocket(sock_in, GetCurrentProcessId(), &info) == 0)
117     {
118
119         sock = WSASocket( FROM_PROTOCOL_INFO,
120                           FROM_PROTOCOL_INFO,
121                           FROM_PROTOCOL_INFO,
122                           &info, 0, 0);
123     }
124 #else
125     sock = dup(sock_in);
126 #endif
127
128     if (sock == rk_INVALID_SOCKET)
129         return NULL;
130
131     errno = ENOMEM;
132     sp = malloc(sizeof(krb5_storage));
133     if (sp == NULL) {
134         saved_errno = errno;
135         rk_closesocket(sock);
136         errno = saved_errno;
137         return NULL;
138     }
139
140     errno = ENOMEM;
141     sp->data = malloc(sizeof(socket_storage));
142     if (sp->data == NULL) {
143         saved_errno = errno;
144         rk_closesocket(sock);
145         free(sp);
146         errno = saved_errno;
147         return NULL;
148     }
149     sp->flags = 0;
150     sp->eof_code = HEIM_ERR_EOF;
151     SOCK(sp) = sock;
152     sp->fetch = socket_fetch;
153     sp->store = socket_store;
154     sp->seek = socket_seek;
155     sp->trunc = socket_trunc;
156     sp->fsync = socket_sync;
157     sp->free = socket_free;
158     sp->max_alloc = UINT_MAX/8;
159     return sp;
160 }