Move kadmin and ktutil to /usr/bin.
[heimdal.git] / lib / krb5 / store_fd.c
blob4f7466eeb3fabe66623af06d3708b6a1d2872ea8
1 /*
2 * Copyright (c) 1997 - 2004 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
4 * All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
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.
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.
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.
34 #include "krb5_locl.h"
35 #include "store-int.h"
37 typedef struct fd_storage {
38 int fd;
39 } fd_storage;
41 #define FD(S) (((fd_storage*)(S)->data)->fd)
43 static ssize_t
44 fd_fetch(krb5_storage * sp, void *data, size_t size)
46 char *cbuf = (char *)data;
47 ssize_t count;
48 size_t rem = size;
50 /* similar pattern to net_read() to support pipes */
51 while (rem > 0) {
52 count = read (FD(sp), cbuf, rem);
53 if (count < 0) {
54 if (errno == EINTR)
55 continue;
56 else
57 return count;
58 } else if (count == 0) {
59 return count;
61 cbuf += count;
62 rem -= count;
64 return size;
67 static ssize_t
68 fd_store(krb5_storage * sp, const void *data, size_t size)
70 const char *cbuf = (const char *)data;
71 ssize_t count;
72 size_t rem = size;
74 /* similar pattern to net_write() to support pipes */
75 while (rem > 0) {
76 count = write(FD(sp), cbuf, rem);
77 if (count < 0) {
78 if (errno == EINTR)
79 continue;
80 else
81 return count;
83 cbuf += count;
84 rem -= count;
86 return size;
89 static off_t
90 fd_seek(krb5_storage * sp, off_t offset, int whence)
92 return lseek(FD(sp), offset, whence);
95 static int
96 fd_trunc(krb5_storage * sp, off_t offset)
98 if (ftruncate(FD(sp), offset) == -1)
99 return errno;
100 return 0;
103 static int
104 fd_sync(krb5_storage * sp)
106 if (fsync(FD(sp)) == -1)
107 return errno;
108 return 0;
111 static void
112 fd_free(krb5_storage * sp)
114 close(FD(sp));
120 * @return A krb5_storage on success, or NULL on out of memory error.
122 * @ingroup krb5_storage
124 * @sa krb5_storage_emem()
125 * @sa krb5_storage_from_mem()
126 * @sa krb5_storage_from_readonly_mem()
127 * @sa krb5_storage_from_data()
128 * @sa krb5_storage_from_socket()
131 KRB5_LIB_FUNCTION krb5_storage * KRB5_LIB_CALL
132 krb5_storage_from_fd(int fd_in)
134 krb5_storage *sp;
135 int saved_errno;
136 int fd;
138 #ifdef _MSC_VER
140 * This function used to try to pass the input to
141 * _get_osfhandle() to test if the value is a HANDLE
142 * but this doesn't work because doing so throws an
143 * exception that will result in Watson being triggered
144 * to file a Windows Error Report.
146 fd = _dup(fd_in);
147 #else
148 fd = dup(fd_in);
149 #endif
151 if (fd < 0)
152 return NULL;
154 errno = ENOMEM;
155 sp = malloc(sizeof(krb5_storage));
156 if (sp == NULL) {
157 saved_errno = errno;
158 close(fd);
159 errno = saved_errno;
160 return NULL;
163 errno = ENOMEM;
164 sp->data = malloc(sizeof(fd_storage));
165 if (sp->data == NULL) {
166 saved_errno = errno;
167 close(fd);
168 free(sp);
169 errno = saved_errno;
170 return NULL;
172 sp->flags = 0;
173 sp->eof_code = HEIM_ERR_EOF;
174 FD(sp) = fd;
175 sp->fetch = fd_fetch;
176 sp->store = fd_store;
177 sp->seek = fd_seek;
178 sp->trunc = fd_trunc;
179 sp->fsync = fd_sync;
180 sp->free = fd_free;
181 sp->max_alloc = UINT_MAX/8;
182 return sp;