rpms/telnet/devel netkit-telnet-0.17-reallynodns.patch, NONE, 1.1 telnet.spec, 1.35, 1.36

Adam Tkac atkac at fedoraproject.org
Wed Sep 2 14:51:12 UTC 2009


Author: atkac

Update of /cvs/pkgs/rpms/telnet/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv26849

Modified Files:
	telnet.spec 
Added Files:
	netkit-telnet-0.17-reallynodns.patch 
Log Message:
- add new option -N to disable DNS lookups (#490242)


netkit-telnet-0.17-reallynodns.patch:
 telnetd.8 |    6 +++++-
 telnetd.c |   27 +++++++++++++++++++--------
 2 files changed, 24 insertions(+), 9 deletions(-)

--- NEW FILE netkit-telnet-0.17-reallynodns.patch ---
--- netkit-telnet-0.17.orig/telnetd/telnetd.c.reallynodns	2009-03-12 14:32:29.000000000 -0700
+++ netkit-telnet-0.17.orig/telnetd/telnetd.c	2009-03-12 14:51:59.000000000 -0700
@@ -85,6 +85,7 @@
 int keepalive = 1;
 char *loginprg = _PATH_LOGIN;
 char *progname;
+int lookupself = 1;
 
 extern void usage(void);
 
@@ -111,7 +112,7 @@
 
 	progname = *argv;
 
-	while ((ch = getopt(argc, argv, "d:a:e:lhnr:I:D:B:sS:a:X:L:")) != EOF) {
+	while ((ch = getopt(argc, argv, "d:a:e:lhnr:I:D:B:sS:a:X:L:N")) != EOF) {
 		switch(ch) {
 
 #ifdef	AUTHENTICATE
@@ -210,6 +211,10 @@
 			keepalive = 0;
 			break;
 
+                case 'N':
+                        lookupself = 0;
+                        break;
+
 #ifdef	SecurID
 		case 's':
 			/* SecurID required */
@@ -393,6 +398,7 @@
 #endif
 	fprintf(stderr, " [-L login_program]");
 	fprintf(stderr, " [-n]");
+	fprintf(stderr, " [-N]");
 #ifdef	SecurID
 	fprintf(stderr, " [-s]");
 #endif
@@ -691,15 +697,20 @@
 
 		memset(&hints, '\0', sizeof(hints));
 		hints.ai_socktype = SOCK_STREAM;
-		hints.ai_flags = AI_ADDRCONFIG;
+		hints.ai_flags = AI_CANONNAME;
 
 		gethostname(host_name, sizeof(host_name));
-		if ((e = getaddrinfo(host_name, NULL, &hints, &res)) != 0) {
-			if(e != EAI_AGAIN) {
-				fprintf(stderr, "getaddrinfo: localhost %s\n", 
-				        gai_strerror(e));
-				exit(1);
-			}
+                /*
+                 * Optionally canonicalize the local host name, in case
+                 * gethostname() returns foo, we want foo.example.com
+                 */
+		if (lookupself &&
+                    (e = getaddrinfo(host_name, NULL, &hints, &res)) == 0) {
+                        if (res->ai_canonname) {
+                                strncpy(host_name, res->ai_canonname,
+                                                        sizeof(host_name)-1);
+                                host_name[sizeof(host_name)-1] = 0;
+                        }
 		}
 		if(res)
 			freeaddrinfo(res);
--- netkit-telnet-0.17.orig/telnetd/telnetd.8.reallynodns	2009-03-12 14:54:54.000000000 -0700
+++ netkit-telnet-0.17.orig/telnetd/telnetd.8	2009-03-12 14:56:58.000000000 -0700
@@ -42,7 +42,7 @@
 protocol server
 .Sh SYNOPSIS
 .Nm /usr/sbin/in.telnetd
-.Op Fl hns
+.Op Fl hnNs
 .Op Fl a Ar authmode
 .Op Fl D Ar debugmode
 .Op Fl L Ar loginprg
@@ -175,6 +175,10 @@
 if the client is still there, so that idle connections
 from machines that have crashed or can no longer
 be reached may be cleaned up.
+.It Fl N
+Do not use DNS to canonicalize the local hostname;
+.Fn gethostname 2
+returns a fully qualified name.
 .It Fl s
 This option is only enabled if
 .Nm telnetd


Index: telnet.spec
===================================================================
RCS file: /cvs/pkgs/rpms/telnet/devel/telnet.spec,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -p -r1.35 -r1.36
--- telnet.spec	27 Jul 2009 05:46:04 -0000	1.35
+++ telnet.spec	2 Sep 2009 14:51:12 -0000	1.36
@@ -1,7 +1,7 @@
 Summary: The client program for the telnet remote login protocol.
 Name: telnet
 Version: 0.17
-Release: 44%{?dist}
+Release: 45%{?dist}
 Epoch: 1
 License: BSD
 Group: Applications/Internet
@@ -27,6 +27,7 @@ Patch18: telnet-gethostbyname.patch
 Patch19: netkit-telnet-0.17-ipv6.diff
 Patch20: netkit-telnet-0.17-nodns.patch
 Patch21: telnet-0.17-errno_test_sys_bsd.patch
+Patch22: netkit-telnet-0.17-reallynodns.patch
 
 BuildPreReq: ncurses-devel
 Buildroot: %{_tmppath}/%{name}-root
@@ -70,6 +71,7 @@ mv telnet telnet-NETKIT
 %patch19 -p1 -b .gethost2
 %patch20 -p1 -b .nodns
 %patch21 -p1 -b .errnosysbsd
+%patch22 -p1 -b .reallynodns
 
 %build
 export OPT_FLAGS="$RPM_OPT_FLAGS -g"
@@ -135,6 +137,9 @@ rm -rf ${RPM_BUILD_ROOT}
 %{_mandir}/man8/telnetd.8*
 
 %changelog
+* Wed Sep 02 2009 Adam Tkac <atkac redhat com> 1:0.17-45
+- add new option -N to disable DNS lookups (#490242)
+
 * Sun Jul 26 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 1:0.17-44
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
 




More information about the fedora-extras-commits mailing list