blow fish

2001-03-02 Thread milunovic
-BEGIN PGP SIGNED MESSAGE- Does anybody have blow fish for FreeBSD or know wehere to find it? I just want to change password encription from MD5 to blow fish:o) Vojislav Milunovic [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: PGPfreeware 5.0i for non-commercial use Charset:

Re: blow fish

2001-03-02 Thread Peter Pentchev
On Fri, Mar 02, 2001 at 01:23:01PM +0100, milunovic wrote: Does anybody have blow fish for FreeBSD or know wehere to find it? I just want to change password encription from MD5 to blow fish:o) A little question: why? MD5 seems to be secure enough. Other than that, look at the

Re: blow fish

2001-03-02 Thread Peter Pentchev
On Fri, Mar 02, 2001 at 02:26:03PM +0200, Peter Pentchev wrote: On Fri, Mar 02, 2001 at 01:23:01PM +0100, milunovic wrote: Does anybody have blow fish for FreeBSD or know wehere to find it? I just want to change password encription from MD5 to blow fish:o) A little question: why? MD5

Re: blow fish

2001-03-02 Thread milunovic
-BEGIN PGP SIGNED MESSAGE- On Fri, 2 Mar 2001, Peter Pentchev wrote: A little question: why? MD5 seems to be secure enough. Just to try it:o) Vojislav Milunovic [EMAIL PROTECTED] -BEGIN PGP SIGNATURE- Version: PGPfreeware 5.0i for non-commercial use Charset: noconv

Re: how to actually find out whether data hit the disk?

2001-03-02 Thread Dag-Erling Smorgrav
Peter Dufault [EMAIL PROTECTED] writes: Do an msync with MS_SYNC someplace. Also, use MAP_NOSYNC in mmap until 4.3 when Matt Dillon plans to make that the default behavior. Ahh, no. That's the other way around - I do not *want* it to hit the disk, but would like to *know* when it

Re: Stupid debugging pthread question

2001-03-02 Thread Peter Dufault
Date: Thu, 1 Mar 2001 12:44:39 -0500 (EST) From: Peter Dufault [EMAIL PROTECTED] This is a stupid question, basically it's how to debug something. I have four cooperating p-threaded processes. One of them keeps getting a SIGSEGV with the address 0x752f422f. I'm not sure if that

Re: how to actually find out whether data hit the disk?

2001-03-02 Thread Anton Berezin
On Fri, Mar 02, 2001 at 01:59:34PM +0100, Dag-Erling Smorgrav wrote: Peter Dufault [EMAIL PROTECTED] writes: Do an msync with MS_SYNC someplace. Also, use MAP_NOSYNC in mmap until 4.3 when Matt Dillon plans to make that the default behavior. Ahh, no. That's the other way around - I

Re: how to actually find out whether data hit the disk?

2001-03-02 Thread Dag-Erling Smorgrav
Anton Berezin [EMAIL PROTECTED] writes: So is there a way, or is not? No. If there was a way to tell it'd be a bug. DES -- Dag-Erling Smorgrav - [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-hackers" in the body of the message

Re: Stupid debugging pthread question

2001-03-02 Thread E.B. Dreger
Date: Fri, 2 Mar 2001 08:04:52 -0500 (EST) From: Peter Dufault [EMAIL PROTECTED] Any strings "/B/u" in your program? That would be stored as 0x752f422f. If you're using assembly with using %ebp for stack frame (yay!), then make certain %esp isn't getting corrupted. (I meant

Re: how to actually find out whether data hit the disk?

2001-03-02 Thread Peter Dufault
Peter Dufault [EMAIL PROTECTED] writes: Do an msync with MS_SYNC someplace. Also, use MAP_NOSYNC in mmap until 4.3 when Matt Dillon plans to make that the default behavior. Ahh, no. That's the other way around - I do not *want* it to hit the disk, but would like to *know* when it

Re: how to actually find out whether data hit the disk?

2001-03-02 Thread Dag-Erling Smorgrav
Peter Dufault [EMAIL PROTECTED] writes: Won't help. You'll get the same mtime no matter whether the file is actually written to disk or not. No, the spec says: [...] Oops, I was thinking "regular file with softupdates", not "mmapped file" (note to self: get more sleep) DES -- Dag-Erling

need help: mmap() / vm_map_stack()

2001-03-02 Thread E.B. Dreger
Greetings, This is something of a repost of an earlier question, but in a different vein. I should mention that I'm using 4.2-R. Has anyone modified vm_map_stack(), in /usr/src/sys/vm/vm_map.c, to search for the first suitable open block? I tried modifying vm_map_stack() based on

wchan kqread

2001-03-02 Thread Danny Braniss
with the latest kernel (4.2, cvsuped today), some processes get stuck for a long time with WCHAN kqread - mainly login, top, netstart -r, with an old kernel (about Feb 11 all is ok). what did i screw up? danny To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe

Re: Stupid debugging pthread question

2001-03-02 Thread Peter Dufault
(gdb) x/s $esp-8 0x826b400 dtablecount+6528:"/wd0/B/usr-src/lib/libc_r/uthread/uthread_dup2.c" (gdb) I guess it is the "thread_fd_lock_debug/_thread_fd_unlock_debug" calls with __FILE__ that push this on the stack. I'll build a debuggable libc_r and see I see. Well, of course

stupid device driver question

2001-03-02 Thread Dmitry Dicky
Hi fellows, I'm writing some device driver which should pass some data to the user space. The part of the device read routine looks as follows: -- int dev_read(dev_t dev, struct uio *uio, int ioflag) { int err = 0; /* ... */ amnt = MIN(uio-uio_resid,

Re: how to actually find out whether data hit the disk?

2001-03-02 Thread Wes Peters
Anton Berezin wrote: On Fri, Mar 02, 2001 at 01:59:34PM +0100, Dag-Erling Smorgrav wrote: Peter Dufault [EMAIL PROTECTED] writes: Do an msync with MS_SYNC someplace. Also, use MAP_NOSYNC in mmap until 4.3 when Matt Dillon plans to make that the default behavior. Ahh, no.

Re: blow fish

2001-03-02 Thread Paul Herman
On Fri, 2 Mar 2001, milunovic wrote: Does anybody have blow fish for FreeBSD or know wehere to find it? I just want to change password encription from MD5 to blow fish:o) I think Mark Murray is still sitting on the patch I did for this very thing. Check the -hackers mail archives. It was

Re: stupid device driver question

2001-03-02 Thread Richard Hodges
On Fri, 2 Mar 2001, Dmitry Dicky wrote: Hi fellows, I'm writing some device driver which should pass some data to the user space. The part of the device read routine looks as follows: -- int dev_read(dev_t dev, struct uio *uio, int ioflag) { int

gcc -pthread / segfault problem

2001-03-02 Thread Lists Account
Hi all, I was coding some stuff under a 4.2 box of mine here earlier today and I seem to have hit a very strange bug, I was wondering if anyone could help me out here. I wrote a bunch of pthread enabled code, when I tried to run the program, after I compiled it with -pthread (I had to with the

BIND 9.1.1 and FBSD 4.2-stable

2001-03-02 Thread Hyunseog Ryu
Hi, folks I have questions for BIND version 9.1.1rc2. I submitted original question to [EMAIL PROTECTED], but couldn't get an answer for this. Recently I installed BIND 9.1.1rc2 into one of FreeBSD 4.2-stable version. After installation of BIND, it works fine for a while. But when I

Re: BIND 9.1.1 and FBSD 4.2-stable

2001-03-02 Thread Doug Barton
On Fri, 2 Mar 2001, Hyunseog Ryu wrote: Hi, folks I have questions for BIND version 9.1.1rc2. I submitted original question to [EMAIL PROTECTED], but couldn't get an answer for this. You're not getting answers because you are sending to the wrong lists. Your question belongs on

kern/23620: Fore PCA200E driver

2001-03-02 Thread Richard Hodges
Hi, all! A couple months ago, I submitted PR kern/23620 describing a problem with the Fore PCA200E driver for HARP. It includes a description of the problems and a patch. Could someone commit this to STABLE so that it has a chance of making it into 4.3 RELEASE? Thanks, -Richard

easy way to crash freebsd

2001-03-02 Thread Dan Phoenix
symbolic link /etc/resolv.conf to a non-existant filethrow a bunch of connections at it and watch it reboot. -- Dan +--+ | BRAVENET WEB SERVICES | | [EMAIL PROTECTED]|

Re: easy way to crash freebsd

2001-03-02 Thread Dan Phoenix
People asking me how this could be used as a local user. Well i guess if you wanted to you could find something root runs that writes to /tmp then umask resolv.conf and echo "" resolv.conf I am in no way supporting that...just answering a question. On Fri, 2 Mar 2001, Dan Phoenix wrote:

Re: easy way to crash freebsd

2001-03-02 Thread Dan Debertin
Unable to replicate. Opened up 1,000 connections to port 22 with /etc/resolv.conf symlinked to /etc/foo. FreeBSD-4.1.1-RELEASE. Have fun, Dan Debertin -- ++ Unix is the worst operating system, except for all others. ++ Dan Debertin ++ Senior Systems Administrator ++ Bitstream Underground, LLC

Re: easy way to crash freebsd

2001-03-02 Thread Alfred Perlstein
On Fri, 2 Mar 2001, Dan Phoenix wrote: symbolic link /etc/resolv.conf to a non-existant filethrow a bunch of connections at it and watch it reboot. * Dan Phoenix [EMAIL PROTECTED] [010302 15:24] wrote: People asking me how this could be used as a local user. Well i guess if you

Re: easy way to crash freebsd

2001-03-02 Thread Dan Phoenix
[root@lotho dphoenix]# uname -a FreeBSD lotho.sf.bravenet.com 4.2-STABLE FreeBSD 4.2-STABLE #0: Thu Mar 1 17:07:55 PST 2001 [EMAIL PROTECTED]:/usr/src/sys/compile/MYKERNEL i386 [root@lotho dphoenix]# Here is the machine i was able to do it on. Btw it won't happen instantly Give it a few

Re: easy way to crash freebsd

2001-03-02 Thread Dan Phoenix
lolya that would definately be a killer :) On Fri, 2 Mar 2001, Alfred Perlstein wrote: Date: Fri, 2 Mar 2001 15:25:53 -0800 From: Alfred Perlstein [EMAIL PROTECTED] To: Dan Phoenix [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: easy way to crash freebsd On Fri, 2 Mar 2001,

Re: blow fish

2001-03-02 Thread Kris Kennaway
On Fri, Mar 02, 2001 at 02:31:41PM +0200, Peter Pentchev wrote: On Fri, Mar 02, 2001 at 02:26:03PM +0200, Peter Pentchev wrote: On Fri, Mar 02, 2001 at 01:23:01PM +0100, milunovic wrote: Does anybody have blow fish for FreeBSD or know wehere to find it? I just want to change password