aboutsummaryrefslogtreecommitdiff
path: root/src/lib/krb5/ccache/stdio/scc_maybe.c
blob: ef62617456a1adea10b8678c45141078e4dbd6c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
/*
 * lib/krb5/ccache/stdio/scc_maybe.c
 *
 * Copyright 1990,1991 by the Massachusetts Institute of Technology.
 * All Rights Reserved.
 *
 * Copyright 1995 by Cygnus Support.
 *
 * Export of this software from the United States of America may
 *   require a specific license from the United States Government.
 *   It is the responsibility of any person or organization contemplating
 *   export to obtain such a license before exporting.
 * 
 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
 * distribute this software and its documentation for any purpose and
 * without fee is hereby granted, provided that the above copyright
 * notice appear in all copies and that both that copyright notice and
 * this permission notice appear in supporting documentation, and that
 * the name of M.I.T. not be used in advertising or publicity pertaining
 * to distribution of the software without specific, written prior
 * permission.  M.I.T. makes no representations about the suitability of
 * this software for any purpose.  It is provided "as is" without express
 * or implied warranty.
 * 
 *
 * This file contains the source code for conditional open/close calls.
 */

#include "scc.h"
#include "k5-int.h"

int krb5_scc_default_format = KRB5_SCC_DEFAULT_FVNO;

krb5_error_code
krb5_scc_close_file (context, id)
   krb5_context context;
    krb5_ccache id;
{
     krb5_scc_data *data;
     int ret;
     krb5_error_code retval;

     data = (krb5_scc_data *) id->data;
     if (data->file == (FILE *) NULL)
	 return KRB5_FCC_INTERNAL;
#ifdef ultrix
     errno = 0;
#endif
     ret = fflush (data->file);
#ifdef ultrix
     /* their LIBC refuses to allow an fflush() of a read-only buffer!
	We patch around it by only calling it an error if errno is set by a
	(failed) syscall */
     if (ret == EOF && !errno) ret = 0;
#endif
     memset (data->stdio_buffer, 0, sizeof (data->stdio_buffer));
     if (ret == EOF) {
	  int errsave = errno;
	  (void) krb5_unlock_file(context, fileno(data->file));
	  (void) fclose (data->file);
	  data->file = 0;
	  return krb5_scc_interpret (context, errsave);
     }
     retval = krb5_unlock_file(context, fileno(data->file));
     ret = fclose (data->file);
     data->file = 0;
     if (retval)
	 return retval;
     else
     return ret ? krb5_scc_interpret (context, errno) : 0;
}

krb5_error_code
krb5_scc_open_file (context, id, mode)
   krb5_context context;
    krb5_ccache id;
    int mode;
{
     char fvno_bytes[2];	/* In nework standard byte order, big endian */
     krb5_scc_data *data;
     FILE *f;
     char *open_flag;
     krb5_error_code retval;

     data = (krb5_scc_data *) id->data;
     if (data->file) {
	  /* Don't know what state it's in; shut down and start anew.  */
	  (void) krb5_unlock_file(context, fileno(data->file));
	  (void) fclose (data->file);
	  data->file = 0;
     }
#ifdef ANSI_STDIO
     switch(mode) {
     case SCC_OPEN_AND_ERASE:
	 unlink(data->filename);
	 /* XXX should do an exclusive open here, but no way to do */
	 /* this under stdio */
	 open_flag = "wb+";
	 break;
     case SCC_OPEN_RDWR:
	 open_flag = "rb+";
	 break;
     case SCC_OPEN_RDONLY:
     default:
	 open_flag = "rb";
	 break;
     }
#else
     switch(mode) {
     case SCC_OPEN_AND_ERASE:
	 unlink(data->filename);
	 /* XXX should do an exclusive open here, but no way to do */
	 /* this under stdio */
	 open_flag = "w+";
	 break;
     case SCC_OPEN_RDWR:
	 open_flag = "r+";
	 break;
     case SCC_OPEN_RDONLY:
     default:
	 open_flag = "r";
	 break;
     }
#endif

     f = fopen (data->filename, open_flag);
     if (!f)
	  return krb5_scc_interpret (context, errno);
#ifdef HAS_SETVBUF
     setvbuf(f, data->stdio_buffer, _IOFBF, sizeof (data->stdio_buffer));
#else
     setbuf (f, data->stdio_buffer);
#endif
     switch (mode) {
     case SCC_OPEN_RDONLY:
	 if ((retval = krb5_lock_file(context,fileno(f),KRB5_LOCKMODE_SHARED))){
	     (void) fclose(f);
	     return retval;
	 }
	 break;
     case SCC_OPEN_RDWR:
     case SCC_OPEN_AND_ERASE:
	 if ((retval = krb5_lock_file(context, fileno(f), 
				      KRB5_LOCKMODE_EXCLUSIVE))) {
	     (void) fclose(f);
	     return retval;
	 }
	 break;
     }
     if (mode == SCC_OPEN_AND_ERASE) {
	 /* write the version number */
	 int errsave;

	 fvno_bytes[0] = krb5_scc_default_format >> 8;
	 fvno_bytes[1] = krb5_scc_default_format & 0xFF;
	 data->version = krb5_scc_default_format;
	 if (!fwrite((char *)fvno_bytes, sizeof(fvno_bytes), 1, f)) {
	     errsave = errno;
	     (void) krb5_unlock_file(context, fileno(f));
	     (void) fclose(f);
	     return krb5_scc_interpret(context, errsave);
	 }
     } else {
	 /* verify a valid version number is there */
	 if (!fread((char *)fvno_bytes, sizeof(fvno_bytes), 1, f)) {
	     (void) krb5_unlock_file(context, fileno(f));
	     (void) fclose(f);
	     return KRB5_CC_FORMAT;
	 }
	 data->version = (fvno_bytes[0] << 8) + fvno_bytes[1];
	 if ((data->version != KRB5_SCC_FVNO_1) &&
	     (data->version != KRB5_SCC_FVNO_2) &&
	     (data->version != KRB5_SCC_FVNO_3) &&
	     (data->version != KRB5_SCC_FVNO_4)) {
	     (void) krb5_unlock_file(context, fileno(f));
	     (void) fclose(f);
	     return KRB5_CCACHE_BADVNO;
	 }
	if (data->version == KRB5_SCC_FVNO_4) {
	    char buf[1024];
	    int len;

	    if (!fread((char *)fvno_bytes, sizeof(fvno_bytes), 1, f)) {
	     	(void) krb5_unlock_file(context, fileno(f));
	     	(void) fclose(f);
	     	return KRB5_CC_FORMAT;
	    }
	    if ((len = (fvno_bytes[0] << 8) + fvno_bytes[1]) != 0) {
	    	if (!fread(buf, len, 1, f)) {
	     	    (void) krb5_unlock_file(context, fileno(f));
	     	    (void) fclose(f);
	     	    return KRB5_CC_FORMAT;
		}
	    }
	}
    }
    data->file = f;
    return 0;
}