segfault in http.c when https URL is mistyped

2016-09-07 Thread Lars Wendler
Hi,

we at Gentoo got a bug report [1] about git-remote-https segfaulting
when the URL has been mistyped. 
This seems to only be triggered when git was compiled with curl
support:

  git clone https::/some.example-site.net/test.git

Observe the "https::/" instead of "https://;. As soon as you run such a
command, syslog receives a message like:

  kernel: git-remote-http[8766]: segfault at 0 ip 00408abd sp
  7ffd70adf7c0 error 4 in git-remote-https[40+103000]

Kind regards
Lars

[1] https://bugs.gentoo.org/592522

-- 
Lars Wendler
Gentoo package maintainer
GPG: 21CC CF02 4586 0A07 ED93  9F68 498F E765 960E 9B39

Attention! New gpg key! See
https://www.gentoofan.org/blog/index.php?/archives/9-New-gpg-keys.html


pgpXdpQ8pOtMd.pgp
Description: Digitale Signatur von OpenPGP


[PATCH] git-send-email.perl: Fixed sending of many/huge changes/patches

2015-09-30 Thread Lars Wendler
From: Stefan Agner <ste...@agner.ch>

Sometimes sending huge patches/commits fail with

[Net::SMTP::SSL] Connection closed at /usr/lib/git-core/git-send-email
line 1320.

Running the command with --smtp-debug=1 yields to

Net::SMTP::SSL: Net::Cmd::datasend(): unexpected EOF on command channel:
at /usr/lib/git-core/git-send-email line 1320.
[Net::SMTP::SSL] Connection closed at /usr/lib/git-core/git-send-email
line 1320.

Stefan described it in his mail like this:

It seems to me that there is a size limit, after cutting down the patch
to ~16K, sending started to work. I cut it twice, once by removing lines
from the head and once from the bottom, in both cases at the size of
around 16K I could send the patch.

See also original report:
http://permalink.gmane.org/gmane.comp.version-control.git/274569

Reported-by: Juston Li <juston.h...@gmail.com>
Tested-by: Markos Chandras <hwoar...@gentoo.org>
Signed-off-by: Lars Wendler <polynomia...@gentoo.org>
---
 git-send-email.perl | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/git-send-email.perl b/git-send-email.perl
index e3ff44b..e907e0ea 100755
--- a/git-send-email.perl
+++ b/git-send-email.perl
@@ -1365,7 +1365,11 @@ Message-Id: $message_id
$smtp->mail( $raw_from ) or die $smtp->message;
$smtp->to( @recipients ) or die $smtp->message;
$smtp->data or die $smtp->message;
-   $smtp->datasend("$header\n$message") or die $smtp->message;
+   $smtp->datasend("$header\n") or die $smtp->message;
+   my @lines = split /^/, $message;
+   foreach my $line (@lines) {
+   $smtp->datasend("$line") or die $smtp->message;
+   }
$smtp->dataend() or die $smtp->message;
$smtp->code =~ /250|200/ or die "Failed to send 
$subject\n".$smtp->message;
}
-- 
2.6.0

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] git-send-email.perl: Fixed sending of many changes/patches

2015-09-29 Thread Lars Wendler
From: Stefan Agner <ste...@agner.ch>

See http://permalink.gmane.org/gmane.comp.version-control.git/274569

Reported-by: Juston Li <juston.h...@gmail.com>
Tested-by: Markos Chandras <hwoar...@gentoo.org>
Signed-off-by: Lars Wendler <polynomia...@gentoo.org>
---
 git-send-email.perl | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/git-send-email.perl b/git-send-email.perl
index e3ff44b..e907e0ea 100755
--- a/git-send-email.perl
+++ b/git-send-email.perl
@@ -1365,7 +1365,11 @@ Message-Id: $message_id
$smtp->mail( $raw_from ) or die $smtp->message;
$smtp->to( @recipients ) or die $smtp->message;
$smtp->data or die $smtp->message;
-   $smtp->datasend("$header\n$message") or die $smtp->message;
+   $smtp->datasend("$header\n") or die $smtp->message;
+   my @lines = split /^/, $message;
+   foreach my $line (@lines) {
+   $smtp->datasend("$line") or die $smtp->message;
+   }
$smtp->dataend() or die $smtp->message;
$smtp->code =~ /250|200/ or die "Failed to send 
$subject\n".$smtp->message;
}
-- 
2.6.0

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH] Fix build with LDFLAGS=-Wl,--as-needed

2014-12-01 Thread Lars Wendler
Signed-off-by: Lars Wendler polynomia...@gentoo.org
---
 contrib/svn-fe/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contrib/svn-fe/Makefile b/contrib/svn-fe/Makefile
index e8651aa..b90cf87 100644
--- a/contrib/svn-fe/Makefile
+++ b/contrib/svn-fe/Makefile
@@ -74,7 +74,7 @@ endif
 endif
 
 svn-fe$X: svn-fe.o $(VCSSVN_LIB) $(XDIFF_LIB) $(GIT_LIB)
-   $(QUIET_LINK)$(CC) $(CFLAGS) $(LDFLAGS) $(EXTLIBS) -o $@ svn-fe.o 
$(LIBS)
+   $(QUIET_LINK)$(CC) $(CFLAGS) $(LDFLAGS) -o $@ svn-fe.o $(LIBS) 
$(EXTLIBS)
 
 svn-fe.o: svn-fe.c ../../vcs-svn/svndump.h
$(QUIET_CC)$(CC) $(CFLAGS) -I../../vcs-svn -o $*.o -c $
-- 
2.2.0

--
To unsubscribe from this list: send the line unsubscribe git in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html