summaryrefslogtreecommitdiffstats
path: root/crypto/heimdal/appl/kx/ChangeLog
blob: 3050e2e97cb6d1080807de9dfdbe2b71a8e2cced (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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
2001-01-17  Johan Danielsson  <joda@pdc.kth.se>

	* common.c: don't write to string constants

2000-12-31  Assar Westerlund  <assar@sics.se>

	* krb5.c (krb5_make_context): handle krb5_init_context failure
	consistently

2000-10-08  Assar Westerlund  <assar@sics.se>

	* kxd.c (doit_passive): check that fds are not too large to select
	on
	* kx.c (doit_active): check that fds are not too large to select
	on
	* krb5.c (krb5_copy_encrypted): check that fds are not too large
	to select on
	* krb4.c (krb4_copy_encrypted): check that fds are not too large
	to select on

2000-06-10  Assar Westerlund  <assar@sics.se>

	* Makefile.in: use INSTALL_SCRIPT for installing rxterm, rxtelnet,
	tenletxr

2000-04-19  Assar Westerlund  <assar@sics.se>

	* common.c: try hostname uncanonified if getaddrinfo() fails

2000-02-06  Assar Westerlund  <assar@sics.se>

	* kx.h: remove old prorotypes

2000-01-08  Assar Westerlund  <assar@sics.se>

	* common.c (match_local_auth): handle ai_canonname being set in
	any of the addresses returnedby getaddrinfo.  glibc apparently
	returns the reverse lookup of every address in ai_canonname.

1999-12-28  Assar Westerlund  <assar@sics.se>

	* kxd.c (main): call krb5_getportbyname with the default in
 	host-byte-order

1999-12-17  Assar Westerlund  <assar@sics.se>

	* common.c (match_local_auth): remove extra brace.  spotted by
 	Jakob Schlyter <jakob@cdg.chalmers.se>

1999-12-16  Assar Westerlund  <assar@sics.se>

	* common.c (match_local_auth): handle ai_canonname not being set

1999-12-06  Assar Westerlund  <assar@sics.se>

	* krb4.c (krb4_authenticate): the NAT address might not be the one
	for the relevant realm, try anyway.
	* kxd.c (recv_conn): type correctness
	* kx.c (connect_host): typo

1999-12-05  Assar Westerlund  <assar@sics.se>

	* common.c (INADDR_LOOPBACK): remove.  now in roken.

	* kxd.c (recv_conn): use getnameinfo_verified
	* kxd.c (recv_conn): replace inaddr2str with getnameinfo

1999-12-04  Assar Westerlund  <assar@sics.se>

	* kx.c (connect_host): use getaddrinfo
	* common.c (find_auth_cookie, match_local_auth): re-write to use
	getaddrinfo

1999-11-27  Assar Westerlund  <assar@sics.se>

	* kxd.c (recv_conn): better errors when getting unrecognized data

1999-11-25  Assar Westerlund  <assar@sics.se>

	* krb4.c (krb4_authenticate): obtain the `local' address when
	doing NAT.  also turn on passive mode.  From <thn@stacken.kth.se>
	
1999-11-18  Assar Westerlund  <assar@sics.se>

	* krb5.c (krb5_destroy): free the correct part of the context
	
1999-11-02  Assar Westerlund  <assar@sics.se>

	* kx.c (main): redo the v4/v5 selection for consistency.  -4 ->
 	try only v4 -5 -> try only v5 none, -45 -> try v5, v4

1999-10-10  Assar Westerlund  <assar@sics.se>

	* Makefile.am (CLEANFILES): add generated files so that they get
 	cleaned away

1999-09-29  Assar Westerlund  <assar@sics.se>

	* common.c (match_local_auth): only look for FamilyLocal (and
 	FamilyWild) cookies.  This will not work when we start talking tcp
 	to the local X-server but `connect_local_xsocket' and the rest of
 	the code doesn't handle it anyway and the old code could (and did)
 	pick up the wrong cookie sometimes.  If we have to match
 	FamilyInternet cookies, the search order has to be changed anyway

1999-09-02  Assar Westerlund  <assar@sics.se>

	* kxd.c (childhandler): watch for child `wait_on_pid' to die.
	(recv_conn): set `wait_on_pid' instead of looping on waitpid here
	also.  This should solve the problem of kxd looping which was
 	caused by the signal handler getting invoked before this waitpid
 	and reaping the child leaving this poor loop without any child

1999-08-19  Assar Westerlund  <assar@sics.se>

	* kxd.c (recv_conn): give better error message
	(doit_active): don't die if fork gives EAGAIN

1999-08-19  Johan Danielsson  <joda@pdc.kth.se>

	* kxd.c (recv_conn): call setjob on crays;
	(doit_passive): if fork fails with EAGAIN, don't shutdown, just close
	the connection re-implement `-t' flag

1999-07-12  Assar Westerlund  <assar@sics.se>

	* Makefile.am: handle not building X programs

1999-06-23  Assar Westerlund  <assar@sics.se>

	* kx.c: conditionalize krb_enable_debug

1999-06-20  Assar Westerlund  <assar@sics.se>

	* kxd.c (main): hopefully do inetd confusion right

1999-06-15  Assar Westerlund  <assar@sics.se>

	* krb4.c (krb4_authenticate): get rid of a warning

	* kx.h: const-pollution

	* kx.c: use get_default_username and resulting const pollution

	* context.c (context_set): const pollution

1999-05-22  Assar Westerlund  <assar@sics.se>

	* kxd.c (recv_conn): fix syslog messages
	(main): fix inetd_flag thinko

1999-05-21  Assar Westerlund  <assar@sics.se>

	* kx.c (main): don't byte-swap the argument to krb5_getportbyname

	* kx.c (main): try to use $USERNAME

1999-05-10  Assar Westerlund  <assar@sics.se>

	* Makefile.in (SOURCES*): update sources list
	
	* kx.c (main): forgot to conditionalize some KRB5 code
	
	* kxd.c (main): use getarg
	(*): handle v4 and/or v5

	* kx.h: update
	
	* kx.c (main): use getarg.
	(*): handle v4 and/or v5

	* common.c (do_enccopy, copy_encrypted): remove use
	net_{read,write} instead of krb_net_{read,write}
	(krb_get_int, krb_put_int): include fallback of these for when we
	compile without krb4
	
	* Makefile.am (*_SOURCES): remove encdata, add krb[45].c,
	context.c
	(LDADD): add krb5

	* krb4.c, krb5.c, context.c: new files

1999-05-08  Assar Westerlund  <assar@sics.se>

	* kxd.c (doit_passive): handle error code from
 	create_and_write_cookie

	* kx.c (doit_active): handle error code from
 	create_and_write_cookie

	* common.c (create_and_write_cookie): try to return better (and
 	correct) errors.  Based on a patch from Love <lha@e.kth.se>

	* common.c (try_pie): more braces
	(match_local_auth): new function
	(find_auth_cookie): new function
	(replace_cookie): don't just take the first auth cookie.  based on
	patch from Ake Sandgren <ake@@cs.umu.se>

Wed Apr  7 23:39:23 1999  Assar Westerlund  <assar@sics.se>
	
	* common.c (get_xsockets): init local variable to get rid of a gcc
 	warning

Thu Apr  1 21:11:36 1999  Johan Danielsson  <joda@hella.pdc.kth.se>

	* Makefile.in: fix for writeauth.o

Fri Mar 19 15:12:31 1999  Johan Danielsson  <joda@hella.pdc.kth.se>

	* kx.c: add gcc-braces

Thu Mar 18 11:18:20 1999  Johan Danielsson  <joda@hella.pdc.kth.se>

	* Makefile.am: include Makefile.am.common

Thu Mar 11 14:58:32 1999  Johan Danielsson  <joda@hella.pdc.kth.se>

	* writeauth.c: protoize

	* common.c: fix some warnings

Wed Mar 10 19:33:39 1999  Johan Danielsson  <joda@hella.pdc.kth.se>

	* kxd.c: openlog -> roken_openlog

Wed Feb  3 22:01:55 1999  Assar Westerlund  <assar@sics.se>

	* rxtelnet.in: print out what telnet program we are running.  From
 	<nissej@pdc.kth.se>

	* tenletxr.in: add --version, [-h | --help], -v

	* rxterm.in: add --version, [-h | --help], -v

	* rxtelnet.in: add --version, [-h | --help], -v

	* Makefile.in (rxterm, rxtelnet, telnetxr): substitute VERSION and
 	PACKAGE

	* rxtelnet.in: update usage string

Fri Jan 22 23:51:05 1999  Assar Westerlund  <assar@sics.se>

	* common.c (verify_and_remove_cookies): give back a meaningful
 	error message if we're using the wrong cookie

Fri Dec 18 17:42:02 1998  Assar Westerlund  <assar@sics.se>

	* common.c (replace_cookie): try to handle the case of not finding
 	any cookies

Sun Nov 22 10:31:53 1998  Assar Westerlund  <assar@sics.se>

	* Makefile.in (WFLAGS): set

Wed Nov 18 20:25:37 1998  Assar Westerlund  <assar@sics.se>

	* rxtelnet.in: new argument -n for not starting any terminal
 	emulator

	* kx.c (doit_passive): parse $DISPLAY correctly

Fri Oct  2 06:34:51 1998  Assar Westerlund  <assar@sics.se>

	* kx.c (doit_active): check DISPLAY to figure out what local
 	socket to connect to.  From Åke Sandgren <ake@cs.umu.se>

Thu Oct  1 23:02:29 1998  Johan Danielsson  <joda@hella.pdc.kth.se>

	* kx.h: case MAY_HAVE_X11_PIPES with Solaris

Tue Sep 29 02:22:44 1998  Assar Westerlund  <assar@sics.se>

	* kx.c: fix from Ake Sandgren <ake@cs.umu.se>

Mon Sep 28 18:04:03 1998  Johan Danielsson  <joda@hella.pdc.kth.se>

	* common.c (try_pipe): return -1 if I_PUSH fails with ENOSYS

Sat Sep 26 17:34:21 1998  Assar Westerlund  <assar@sics.se>

	* kxd.c: create sockets before setuid to handle Solaris' strange
 	permissions on /tmp/.X11-{unix,pipe}

	* common.c (chown_xsockets): new function

	* kx.h (chown_xsockets): new prototype

Sun Aug 16 18:34:30 1998  Assar Westerlund  <assar@sics.se>

	* kxd.c (doit_passive): conditionalize stream pipe code

	* implement support for Solaris's named-pipe X transport

Thu May 28 17:20:39 1998  Johan Danielsson  <joda@emma.pdc.kth.se>

	* common.c: fix for (compiler?) bug in solaris 2.4 bind

	* kx.c: get_xsockets returns int, not unsigned

Wed May 27 04:20:20 1998  Assar Westerlund  <assar@sics.se>

	* kxd.c (doit): better error reporting

Tue May 26 17:41:23 1998  Johan Danielsson  <joda@emma.pdc.kth.se>

	* kx.c: use krb_enable_debug

Mon May 25 05:22:18 1998  Assar Westerlund  <assar@sics.se>

	* Makefile.in (clean): remove encdata.c

Fri May  1 07:16:36 1998  Assar Westerlund  <assar@sics.se>

	* kx.c: unifdef -DHAVE_H_ERRNO

OpenPOWER on IntegriCloud