DANGER: login and friends with libscrypt/libdescrypt

1999-09-20 Thread Pierre Beyssac
tomorrow morning on my machines. -- Pierre Beyssac [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: Wierd su/vnc issue

1999-09-20 Thread Pierre Beyssac
effect of the libcrypt-libscrypt change (note how it happens with programs which ask for a passwd). I just get SIGSEVs right now when I try su but I've had the same as you at least once before that. -- Pierre Beyssac [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED

Re: Wierd su/vnc issue

1999-09-21 Thread Pierre Beyssac
On Mon, Sep 20, 1999 at 09:55:19PM +, Adam Strohl wrote: Well, is there a work around, telneting out does the same thing, using the -l user option used to allow me to log into remote hosts, not The workaround I found was to boot single then "su - mylogin". -- Pier

Re: DANGER: login and friends with libscrypt/libdescrypt

1999-09-21 Thread Pierre Beyssac
thenticate () from /usr/lib/libpam.so.1 #5 0x804a88a in setlogin () #6 0x8049c3a in setlogin () #7 0x804986d in setlogin () -- Pierre Beyssac [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

top and w breakage

1999-09-21 Thread Pierre Beyssac
0K 0K ? 82 0:00 0.00% 1455.13% w works except that the "WHAT" column is apparently always "-". I have reinstalled libkvm and a kernel in sync with the rest of the system... Have I missed something? -- Pierre Beyssac [EMAIL PROTECTED] To Unsubscribe:

Re: DANGER: login and friends with libscrypt/libdescrypt

1999-09-21 Thread Pierre Beyssac
with a special SONAME of libcrypt.so.3 and the runtime symlink doesn't work. Revision ChangesPath 1.19 +5 -1 src/secure/lib/libcrypt/Makefile -- Pierre Beyssac [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED

Re: DANGER: login and friends with libscrypt/libdescrypt

1999-09-21 Thread Pierre Beyssac
/development/CTM-international/int-cvs-cur/ -- Pierre Beyssac [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: top and w breakage

1999-09-21 Thread Pierre Beyssac
0x80493c5 in free () Am I cursed (pun intended) or what :-) ? -- Pierre Beyssac [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: DANGER: login and friends with libscrypt/libdescrypt

1999-09-21 Thread Pierre Beyssac
ne is just dreadfully slow. That's why I tried ping which makes checking easier than FTP, but I didn't know ping is filtered for this machine. It seems up to me. I'm logged in on it at the moment and did an It's up for me too now, but it's extremely sloow. I get FTP timeouts 3 times out of 4.

Re: top and w breakage

1999-09-21 Thread Pierre Beyssac
On Tue, Sep 21, 1999 at 08:40:07PM +0200, Pierre Beyssac wrote: Sorry I was unclear, yes: a full buildworld+installworld+new kernel (the same installworld that broke login and friends for me). This includes kernel modules of course. Something more (probably unrelated): when I exit top

Re: Still waiting for xl driver reports

1999-10-12 Thread Pierre Beyssac
though I'm not sure this wouldn't happen on xl0 too (xl0 is configured down at the moment). Now regarding performance, I haven't made extensives tests. The closest thing to that that I have in mind is to stretch that 2*100Mbps trunking link we configured this morning between two of our ethernet switche

egcs -O breaks ping.c:in_cksum()

1999-11-15 Thread Pierre Beyssac
s of "volatile"; it might well be an egcs bug. Attached is a test program if anyone wishes to experiment. Try to compile with and without -O and see the difference. The correct output is "cksum=f9f6", the wrong output is "cksum=f5f6". -- Pierre Beyssac

Re: egcs -O breaks ping.c:in_cksum()

1999-11-15 Thread Pierre Beyssac
On Mon, Nov 15, 1999 at 06:52:23PM +0200, Sheldon Hearn wrote: On Mon, 15 Nov 1999 17:48:31 +0100, Pierre Beyssac wrote: I've discovered the following problem, either due to egcs or the source code for in_cksum in ping, I'm not sure. See PR 13292. Wow, Thanks! August 21th, it's not really

Re: egcs -O breaks ping.c:in_cksum()

1999-11-15 Thread Pierre Beyssac
to low 16 */ sum += (sum 16); /* add carry */ - answer = ~sum; /* truncate to 16 bits */ - return(answer); + answer.us = ~sum; /* truncate to 16 bits */ + return(answer.us); } int main() -- Pierre

Re: egcs -O breaks ping.c:in_cksum()

1999-11-15 Thread Pierre Beyssac
if there's no objection. -- Pierre Beyssac [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: PATCH for testing

1999-11-15 Thread Pierre Beyssac
sensitive in the command line or the environment. When there's any risk, the best option is to remove 'ps' alltogether, IMHO. -- Pierre Beyssac[EMAIL PROTECTED] [EMAIL PROTECTED] BSD : il y a moins bien, mais c'est coté en bourse Free domains: http://www.eu.org/ or mail [EMAIL

Re: egcs -O breaks ping.c:in_cksum()

1999-11-15 Thread Pierre Beyssac
with an even size. -- Pierre Beyssac[EMAIL PROTECTED] [EMAIL PROTECTED] BSD : il y a moins bien, mais c'est coté en bourse Free domains: http://www.eu.org/ or mail [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" i

Re: egcs -O breaks ping.c:in_cksum()

1999-11-16 Thread Pierre Beyssac
On Tue, Nov 16, 1999 at 03:17:43PM +1100, Bruce Evans wrote: On Mon, 15 Nov 1999, Pierre Beyssac wrote: - volatile u_short answer = 0; + union { + u_int16_t us; + u_int8_t uc[2]; + } answer; This has indentation bugs. Uh, which one(s) do you mean exactly? The 4

Re: egcs -O breaks ping.c:in_cksum()

1999-11-16 Thread Pierre Beyssac
(mainly inside a statement): Indentation is an 8 character tab. Second level indents are four spaces. -- Pierre Beyssac [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: egcs -O breaks ping.c:in_cksum()

1999-11-16 Thread Pierre Beyssac
On Mon, Nov 15, 1999 at 05:59:23PM -0800, Kris Kennaway wrote: On Tue, 16 Nov 1999, Pierre Beyssac wrote: I've checked, the answer is no: apparently, in_cksum() in routed/rdisc.c is only called in two places, both with an even size. Can it hurt to pre-emptively fix it anyway in case some

Re: egcs -O breaks ping.c:in_cksum()

1999-11-16 Thread Pierre Beyssac
On Tue, Nov 16, 1999 at 07:29:35PM +0100, Poul-Henning Kamp wrote: In message [EMAIL PROTECTED], Pierre Beyssac writes: Since in_cksum is used in several places (there's another optimized Isn't there one in libalias already ? Right. I missed it because it's called PacketAliasInternetChecksum

can't use vat (and only vat) with newpcm

1999-11-30 Thread Pierre Beyssac
but writes to the device. pcm0: CS4236B at port 0x534-0x537,0x388-0x38b,0x220-0x22f irq 5 drq 1,0 on isa0 unknown0: Game at port 0x3a0-0x3a7 on isa0 unknown1: Ctrl at port 0xf00-0xf07 on isa0 unknown2: MPU at port 0x330-0x331 on isa0 -- Pierre Beyssac [EMAIL PROTECTED] To Unsubscribe:

Re: Wine-2002.10.07 port on FreeBSD 5.0-current

2002-11-08 Thread Pierre Beyssac
under current at least. I'll test it under stable then I'll send it to Wine. -- Pierre Beyssac [EMAIL PROTECTED] [EMAIL PROTECTED] Free domains: http://www.eu.org/ or mail [EMAIL PROTECTED] --- context_i386.c.orig Wed Aug 14 22:59:03 2002 +++ context_i386.c Fri Nov 8 11:29:34

Re: Wine-2002.10.07 port on FreeBSD 5.0-current

2002-11-08 Thread Pierre Beyssac
to Wine, then. -- Pierre Beyssac [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-current in the body of the message

Re: Wine-2002.10.07 port on FreeBSD 5.0-current

2002-11-08 Thread Pierre Beyssac
On Fri, Nov 08, 2002 at 02:04:01PM +0100, Pierre Beyssac wrote: Fine, but if included as is in Wine because, it will break compatibility with Net/OpenBSD because DBREG_DRX is a FreeBSDism... Sorry for the phrasing, remove the spurious because to make sense of it :) -- Pierre Beyssac

panic in netinet/tcp_syncache.c: syncache_timer

2002-12-21 Thread Pierre Beyssac
); - INP_UNLOCK(inp); nsc = TAILQ_NEXT(sc, sc_timerq); tcpstat.tcps_sc_retransmitted++; TAILQ_REMOVE(tcp_syncache.timerq[slot], sc, sc_timerq); -- Pierre Beyssac [EMAIL PROTECTED] [EMAIL PROTECTED] Free domains: http

Re: panic in netinet/tcp_syncache.c: syncache_timer

2002-12-21 Thread Pierre Beyssac
On Sat, Dec 21, 2002 at 10:57:35AM -0800, Jeffrey Hsu wrote: Can you try upgrading to rev 1.29 of tcp_syncache.c which I committed yesterday? I suspect that should fix this problem. No, I believed that too when I saw your patch, but it didn't solve my problem. -- Pierre Beyssac

Re: panic in netinet/tcp_syncache.c: syncache_timer

2002-12-21 Thread Pierre Beyssac
. As matter of fact I just committed the previous patch I sent before I saw your mail... probably we should commit yours instead? -- Pierre Beyssac [EMAIL PROTECTED] [EMAIL PROTECTED] Free domains: http://www.eu.org/ or mail [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL

Re: 5.2-RELEASE TODO

2003-10-04 Thread Pierre Beyssac
-RELEASE It would be nice if fixing the Raidframe driver could be added to the must resolve list, or a note added to the release notes explaining that's it's broken. It's been totally unusable since before 5.1-RELEASE (raidctl panics). See kern/50541. -- Pierre Beyssac

Re: DVD+R burning flakey after ATAng.

2003-10-22 Thread Pierre Beyssac
, but the Ricoh drive apparently did the right thing anyway. As usual, YMMV. In my case it's clearly not related to the ISO image I put on the DVD. -- Pierre Beyssac [EMAIL PROTECTED] [EMAIL PROTECTED] Free domains: http://www.eu.org/ or mail [EMAIL PROTECTED

broken DRM for ATI Radeon

2003-06-24 Thread Pierre Beyssac
(XFree86-Server-4.3.0_8). Earlier versions exhibited the same behaviour. Does anyone have a clue on where to investigate some more and fix that? -- Pierre Beyssac [EMAIL PROTECTED] [EMAIL PROTECTED] Free domains: http://www.eu.org/ or mail [EMAIL PROTECTED

bug in big pipe code causing performance problems

2003-07-30 Thread Pierre Beyssac
= pipelock(wpipe,1)) == 0) { int size; /* Transfer size */ int segsize;/* first segment to transfer */ -- Pierre Beyssac [EMAIL PROTECTED] [EMAIL PROTECTED] Free domains: http://www.eu.org/ or mail [EMAIL

Re: bug in big pipe code causing performance problems

2003-07-30 Thread Pierre Beyssac
On Wed, Jul 30, 2003 at 11:32:49PM +0200, Pierre Beyssac wrote: - if (space 0 (wpipe-pipe_buffer.cnt PIPE_SIZE)) { + if (space 0 + wpipe-pipe_buffer.cnt wpipe-pipe_buffer.size) { PS : not-so-obvious after all since the above is equivalent to (space

random woes (no RSA support in libssl and libcrypto)

2001-03-19 Thread Pierre Beyssac
the compatibility with the previous minor of urandom has been silently removed (I assume this happened with the last update/cleanup of the random device). It took me two hours to figure it out. -- Pierre Beyssac [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED

Re: CURRENT instability

2001-03-19 Thread Pierre Beyssac
happen to use too much CPU. I had to temporarily revert to an older kernel. -- Pierre Beyssac [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: CURRENT instability

2001-03-19 Thread Pierre Beyssac
On Mon, Mar 19, 2001 at 11:19:02PM +0100, Pierre Beyssac wrote: Ok, thanks, note that your previous patch works fine, at least my make world is still running :-) Famous last words; I had a freeze soon afterwards. Though it seems to have improved the situation quite a bit. Now running another

missing files in readdir(3) on NFS export of ZFS volume (since v28?)

2011-03-06 Thread Pierre Beyssac
4 -rw-r--r--1 pb staff1515 5 jan 2010 /usr/ports/astro/wcslib/pkg-plist ... Reverting to an old 9-current kernel (January 10, before the ZFS v28 patches) fixes the problem... -- Sent from my FreeBSD server Pierre Beyssac p

Re: missing files in readdir(3) on NFS export of ZFS volume (since v28?)

2011-03-07 Thread Pierre Beyssac
doing this? My client was plain and simple ls(1). I said readdir(3) because I wrongly assumed ls used that, but actually from looking at the code it looks like it uses fts_open(3) and friends instead... -- Sent from my FreeBSD server Pierre Beyssac p

Re: missing files in readdir(3) on NFS export of ZFS volume (since v28?)

2011-03-08 Thread Pierre Beyssac
from my FreeBSD server Pierre Beyssac p...@fasterix.frmug.org ___ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to freebsd-current-unsubscr

IDE CDROM not found with PIIX4 chipset, -current kernel

1999-02-24 Thread Pierre Beyssac
at wdc1 drive 1 options ATAPI #Enable ATAPI support for IDE bus options ATAPI_STATIC#Don't do it as an LKM device acd0#IDE CD-ROM -- Pierre Beyssac p...@enst.fr To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd

Re: IDE CDROM not found with PIIX4 chipset, -current kernel

1999-02-24 Thread Pierre Beyssac
... OTOH, I copied this from the GENERIC kernel config file, assuming it recognizes an ATAPI CDROM when it finds one. So my puzzled question is now: how can the GENERIC kernel work in that case, since it declares wd[0-3] ? -- Pierre Beyssac p...@enst.fr To Unsubscribe: send mail

Re: IDE CDROM not found with PIIX4 chipset, -current kernel

1999-02-25 Thread Pierre Beyssac
IDE code and theirs, but it was way beyond my comprehension. I'm not trained for the black magic of IDE probing. I'll try to investigate some more, then I'll try a bug report. -- Pierre Beyssac p...@enst.fr To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd

Re: IDE CDROM not found with PIIX4 chipset, -current kernel

1999-02-25 Thread Pierre Beyssac
, just a CDROM on the second IDE. I'd have changed the hardware configuration to swap the second disk with the CDROM, but I thought it would be much better if it could be made to work, since it apparently can... -- Pierre Beyssac p...@enst.fr To Unsubscribe: send mail to majord

Re: IDE CDROM not found with PIIX4 chipset, -current kernel

1999-02-25 Thread Pierre Beyssac
, differently abled stuff sold by a major company which lost the source code for it, arrogant enough to call it an OS. -- Pierre Beyssac p...@enst.fr To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body of the message

Re: NTP nanokernel support (experimental)

1999-03-07 Thread Pierre Beyssac
FreeBSD. I sent a bug report to the ntpd team a while ago but haven't heard from them. -- Pierre Beyssacp...@fasterix.frmug.org p...@fasterix.freenix.org {Free,Net,Open}BSD, Linux : il y a moins bien, mais c'est plus cher Free domains: http://www.eu.org/ or mail dns-mana...@eu.org

Re: NTP nanokernel support (experimental)

1999-03-07 Thread Pierre Beyssac
jitter could be obtained by averaging 10 or 100 samples, I suppose that's how high-quality receivers work. This might be done in the ntpd driver. -- Pierre Beyssacp...@fasterix.frmug.org p...@fasterix.freenix.org {Free,Net,Open}BSD, Linux : il y a moins bien, mais c'est plus cher Free

Re: UPDATE3: ATA/ATAPI driver new version available.

1999-03-08 Thread Pierre Beyssac
-ROM 80mm data disc loaded, unlocked -- Pierre Beyssac p...@enst.fr To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body of the message

panic: vfs_busy: unexpected lock failure

1999-03-15 Thread Pierre Beyssac
every time I try (with cp -rp; not with piped tars). The kernel is today's, with NFS compiled-in (it's not a module). I'm having the following message: panic: vfs_busy: unexpected lock failure -- Pierre Beyssac p...@enst.fr To Unsubscribe: send mail to majord...@freebsd.org

Re: panic: vfs_busy: unexpected lock failure

1999-03-16 Thread Pierre Beyssac
if that may help. vfs_busy() at vfs_busy+0x6d lookup()+0x3b9 namei() +0x180 stat() +0x44 syscall() +0x187 I also get what seems to be spurious EPROTONOSUPPORT errors that show up in cp while copying files... -- Pierre Beyssac

Re: panic: vfs_busy: unexpected lock failure

1999-03-16 Thread Pierre Beyssac
/junk/ In the above, /home/beyssac/nfs is a symbolic link to /cal/huuh/cal/beyssac which is automounted by amd (last line in the above df). -- Pierre Beyssac p...@enst.fr To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body of the message

Re: panic: vfs_busy: unexpected lock failure

1999-03-16 Thread Pierre Beyssac
to panic. So yes, that seems to be AMD-related. Can't it be in the vfs layer though? -- Pierre Beyssac p...@enst.fr To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body of the message

Re: Any action on PR 10570 ? getting closer to 65K :-(

1999-04-30 Thread Pierre Beyssac
that many bytes of RAM, but it might be true one day... -- Pierre Beyssac p...@enst.fr To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body of the message

Re: Any action on PR 10570 ? getting closer to 65K :-(

1999-04-30 Thread Pierre Beyssac
and ifconfig, at least, more or less depend on offsets in that structures, though I don't know exactly how (some of it has been rewritten to use ioctl() or the routing socket, I believe). -- Pierre Beyssac p...@enst.fr To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd

Re: Any action on PR 10570 ? getting closer to 65K :-(

1999-04-30 Thread Pierre Beyssac
$default i=`expr $i + 1` done -- Pierre Beyssac p...@enst.fr To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body of the message

Re: Any action on PR 10570 ? getting closer to 65K :-(

1999-04-30 Thread Pierre Beyssac
On Fri, Apr 30, 1999 at 04:08:35PM +0200, Pierre Beyssac wrote: and it seems to run ok so far. Here's a script to exercise the panic, you just need to define default as the IP for your default while [ $i -lt $end ]; do #route add $i $default #i=`expr $i + 1` Ooops, sorry, you

Re: Any action on PR 10570 ? getting closer to 65K :-(

1999-04-30 Thread Pierre Beyssac
extended to 64 bits within the next few decades :-) -- Pierre Beyssac p...@enst.fr To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body of the message

Re: m_get(M_WAIT, ...) _can_ return NULL ?

1999-05-10 Thread Pierre Beyssac
be willing to give it a look, but don't expect it to be 100% solved anytime soon. -- Pierre Beyssac p...@enst.fr To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body of the message

mbuf starvation

1999-05-12 Thread Pierre Beyssac
{ - if (i == M_DONTWAIT) - mbstat.m_drops++; - else - panic(Out of mbuf clusters); + mbstat.m_drops++; } return (m); } -- Pierre Beyssac p...@enst.fr To Unsubscribe: send mail to majord

Re: mbuf starvation

1999-05-12 Thread Pierre Beyssac
it's not even a good thing in general because mbuf starvations can and _will_ happen as a normal condition, not because of bugs but because of high resource use. It can have its uses for debugging purposes, as a compilation option. -- Pierre Beyssac p...@enst.fr To Unsubscribe: send

Re: mbuf starvation

1999-05-17 Thread Pierre Beyssac
from m_get and friends. -- Pierre Beyssac p...@enst.fr To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body of the message

Re: mbuf starvation

1999-05-17 Thread Pierre Beyssac
things have changed recently. No, they apparently haven't. You're absolutely right. -- Pierre Beyssac p...@enst.fr To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body of the message

i386/boot2.c patches

2002-03-20 Thread Pierre Beyssac
/cgi/query-pr.cgi?pr=36015 -- Pierre Beyssac [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-current in the body of the message

FreeBSD-localised OpenSSH hangs with Foundry SSH1 server

2002-04-01 Thread Pierre Beyssac
I had problems connecting with the FreeBSD openssh client to a Foundry BigIron gigabit switch running ssh 1.2.27, whereas I can connect fine to the same switch when using a locally-compiled OpenSSH 3.1p1. The culprit is apparently the length of the version string sent by FreeBSD and received by

Re: FreeBSD-localised OpenSSH hangs with Foundry SSH1 server

2002-04-01 Thread Pierre Beyssac
On Mon, Apr 01, 2002 at 11:32:07PM +0200, Dag-Erling Smorgrav wrote: if the FreeBSD-specific string could be shortened (to at most 11 chars, which is exactly enough to put des20020307 in there for example ;-), made user-configurable, or altogether removed. Look for VersionAddendum in

Re: FreeBSD-localised OpenSSH hangs with Foundry SSH1 server

2002-04-02 Thread Pierre Beyssac
On Tue, Apr 02, 2002 at 10:40:08AM +0200, Dag-Erling Smorgrav wrote: Uh, no, it does not seem to work in ssh_config, only in sshd_config. Hmm, that needs fixing then. I have written the following patch, seems to work ok. Pierre --- readconf.c.orig Tue Mar 19 14:29:02 2002 +++

Re: XFree86 and -CURRENT crashing

2002-04-03 Thread Pierre Beyssac
. If it fixes the crash, I bet you are using the DRI kernel module stuff (port drm-kmod). I'm using it for a Radeon card, and I need to recompile/reinstall it almost every time I update my kernel to avoid crashes when starting XFree. -- Pierre Beyssac [EMAIL PROTECTED] To Unsubscribe: send mail

Re: net.inet.tcp.always_keepalive on as default ?

1999-06-04 Thread Pierre Beyssac
(or better, having it configurable on a per-socket basis), dynamically configurable keepalive would be a good thing. -- Pierre Beyssac p...@enst.fr To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-current in the body of the message