Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-06-03 Thread Eygene Ryabinkin
Wed, Jun 03, 2009 at 11:03:45AM +0200, Dag-Erling Sm??rgrav wrote: > Isn't it clearly described in the preceding comment? Specifically, by > the first two sentences: "Replace multiple slashes by a single slash and > trailing slashes by a null. This must be done before VOP_LOOKUP() > because some

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-06-03 Thread Dag-Erling Smørgrav
Eygene Ryabinkin writes: > "Dag-Erling Smørgrav" writes: > > Eygene Ryabinkin writes: > > > Perhaps 'XXX for direnter()' should be changed to something like > > > 'strip trailing slashes in cnp->cn_nameptr'. > > I'll just remove it, since the previous comment clearly explains > > what is going o

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-06-02 Thread Eygene Ryabinkin
Tue, Jun 02, 2009 at 01:28:34PM +0200, Dag-Erling Sm??rgrav wrote: > Eygene Ryabinkin writes: > > For the current code state, check "*cp == '\0'" seems to be redundant: > > [...] By the way, comment before the test "if (rdonly)' seems to be > > slightly misleading [...] > > OK, I see that. I've

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-06-02 Thread Dag-Erling Smørgrav
Bruce Evans writes: > This comment could do with some rewording to emphasize inheritance of the > flag and to improve the grammar of the comment. Suggestions? For reference, here's the entire comment: /* * Replace multiple slashes by a single slash and trailing slashes

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-06-02 Thread Dag-Erling Smørgrav
Eygene Ryabinkin writes: > For the current code state, check "*cp == '\0'" seems to be redundant: > [...] By the way, comment before the test "if (rdonly)' seems to be > slightly misleading [...] OK, I see that. I've removed the check and rewritten the comment. What about this "temporary asser

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-06-02 Thread Eygene Ryabinkin
Dag-Erling, good day. Fri, May 29, 2009 at 06:58:08PM +0200, Dag-Erling Sm??rgrav wrote: > Index: sys/kern/vfs_lookup.c > === > --- sys/kern/vfs_lookup.c (revision 193028) > +++ sys/kern/vfs_lookup.c (working copy) > @@ -454,7

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-05-29 Thread Eygene Ryabinkin
Fri, May 29, 2009 at 06:53:22PM +0200, Dag-Erling Sm??rgrav wrote: > Bruce Evans writes: > > % /* > > %* Get a buffer for the name to be translated, and copy the > > %* name into the buffer. > > % @@ -533,6 +536,8 @@ > > % if (*cp == '\0') { > > % trailing_sla

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-05-29 Thread Dag-Erling Smørgrav
How's this? Index: sys/kern/vfs_lookup.c === --- sys/kern/vfs_lookup.c (revision 193028) +++ sys/kern/vfs_lookup.c (working copy) @@ -454,7 +454,6 @@ int docache;/* == 0 do not cache last compon

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-05-29 Thread Dag-Erling Smørgrav
Bruce Evans writes: > Dag-Erling Smørgrav writes: > % Index: sys/kern/vfs_lookup.c > % === > % --- sys/kern/vfs_lookup.c (revision 192899) > % +++ sys/kern/vfs_lookup.c (working copy) > % @@ -147,6 +147,9 @@ > % cnp->

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-05-28 Thread Eygene Ryabinkin
Mel, good day. Thu, May 28, 2009 at 11:07:12AM +0200, Mel Flynn wrote: > On Tuesday 26 May 2009 23:20:01 Dag-Erling Sm??rgrav wrote: > > Dag-Erling Sm??rgrav writes: > > > Like bde@ pointed out, the patch is incorrect. It moves the test for > > > v_type != VDIR up to a point where, in the case o

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-05-28 Thread Mel Flynn
On Tuesday 26 May 2009 23:20:01 Dag-Erling Smørgrav wrote: > Dag-Erling Smørgrav writes: > > Like bde@ pointed out, the patch is incorrect. It moves the test for > > v_type != VDIR up to a point where, in the case of a symlink, v_type is > > always (by definition) VLNK. > > Hmm, actually, symlink

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-05-27 Thread Dag-Erling Smørgrav
Eygene Ryabinkin writes: > 'if ()' looks suspicious: ISLASTCN is set some lines below so it could > be not yet flagged. Seems like we could omit 'if ()' clause but leave > it's body for the current state of the code -- it will be equivalent to > the mine's check. Yes, I was a little too quick th

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-05-27 Thread Dag-Erling Smørgrav
Oliver Pinter writes: > This is a redefinitions of PARAMASK in the patch, that you attached Sorry, I forgot to regenerate the patch after fixing it. DES -- Dag-Erling Smørgrav - d...@des.no ___ freebsd-hackers@freebsd.org mailing list http://lists.fre

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-05-27 Thread Oliver Pinter
Hi! This is a redefinitions of PARAMASK in the patch, that you attached ---8<- ... #definePARAMASK0x0e00 /* mask of parameter descriptors */ +#defineTRAILINGSLASH 0x1000 /* path ended in a slash */ +#definePARAMASK0x1e00 /* mask

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-05-27 Thread Eygene Ryabinkin
Wed, May 27, 2009 at 06:44:35PM +0200, Dag-Erling Sm??rgrav wrote: > Eygene Ryabinkin writes: > > [new three-part patch] > > I committed the namei.h cleanup patch and the vfs_lookup.c comment > patch. Thanks! > I made a number of changes to the trailing-slash patch. Can you > double-check it b

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-05-27 Thread Dag-Erling Smørgrav
Bruce Evans writes: > This seems to be equivalent to the patch in the PR at the time of PR, > except it risks breaking some other cases, so I don't see how it can > work. As discussed on -hackers, it doesn't. This one does, though. DES -- Dag-Erling Smørgrav - d...@des.no Index: sys/kern/vfs_

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-05-27 Thread Dag-Erling Smørgrav
Eygene Ryabinkin writes: > [new three-part patch] I committed the namei.h cleanup patch and the vfs_lookup.c comment patch. I made a number of changes to the trailing-slash patch. Can you double-check it before I commit it? DES -- Dag-Erling Smørgrav - d...@des.no Index: sys/kern/vfs_lookup.

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-05-27 Thread Dag-Erling Smørgrav
Eygene Ryabinkin writes: > Regarding the 'ln -s /etc/motd file; ln -s file/ anotherone': do you > (or anyone reading this) think that 'cat anotherone' should really > show the contents of /etc/motd or patch's behaviour is good? if you mean $ ln -fs /etc/motd foo $ ln -fs foo/ bar $ readlink foo

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-05-27 Thread Eygene Ryabinkin
Wed, May 27, 2009 at 02:39:07PM +0200, Dag-Erling Sm??rgrav wrote: > I was working on head. The code is (mostly) the same, just shifted > somewhere between ~50 and ~90 lines depending on where you look. Your > patch should apply cleanly. > > BTW, you made a lot of whitespace changes in namei.h.

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-05-27 Thread Dag-Erling Smørgrav
Eygene Ryabinkin writes: > "Dag-Erling Smørgrav" writes: > > (don't be fooled by the comment on line 270; > > the code inside the if statement is for the *non*-symlink case). > Me sees this on the line 226, but may be I hadn't updated my 7.x. I was working on head. The code is (mostly) the same

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-05-27 Thread Eygene Ryabinkin
Wed, May 27, 2009 at 01:07:15PM +0200, Dag-Erling Sm??rgrav wrote: > Eygene Ryabinkin writes: > > May be the attached patch will fix the thing? > > I'm not entirely convinced. Try the regression test I wrote > (head/tools/regression/vfs/trailing_slash.t) I see: you mean that the bare '/' at th

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-05-27 Thread Dag-Erling Smørgrav
Eygene Ryabinkin writes: > May be the attached patch will fix the thing? I'm not entirely convinced. Try the regression test I wrote (head/tools/regression/vfs/trailing_slash.t) > It adds an additional flag, but this was the only thing I was able to > invent to avoid ABI breakage. The flag is

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-05-27 Thread Eygene Ryabinkin
Dag-Erling, *, good day. Tue, May 26, 2009 at 10:13:21PM +0200, Dag-Erling Sm??rgrav wrote: > [moving from security@ to hack...@] > > Jakub Lach writes: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/21768 > > Like bde@ pointed out, the patch is incorrect. It moves the test for > v_type !

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-05-26 Thread Dag-Erling Smørgrav
Dag-Erling Smørgrav writes: > Like bde@ pointed out, the patch is incorrect. It moves the test for > v_type != VDIR up to a point where, in the case of a symlink, v_type is > always (by definition) VLNK. Hmm, actually, symlinks are resolved in namei(), not lookup(). This is not going to be pret

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-05-26 Thread Dag-Erling Smørgrav
Dag-Erling Smørgrav writes: > The attached patch should work. Oops. It actually triggers a KASSERT. DES -- Dag-Erling Smørgrav - d...@des.no ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To uns

Re: FYI Lighttpd 1.4.23 /kernel (trailing '/' on regular file symlink) vulnerability

2009-05-26 Thread Dag-Erling Smørgrav
[moving from security@ to hack...@] Jakub Lach writes: > http://www.freebsd.org/cgi/query-pr.cgi?pr=kern/21768 Like bde@ pointed out, the patch is incorrect. It moves the test for v_type != VDIR up to a point where, in the case of a symlink, v_type is always (by definition) VLNK. The reason wh

Re: FYI: 3Ware 9650 can cause data corruption

2007-10-05 Thread Julian Elischer
appropiate for this kind of FYI then tell. well I guess that's better than the 7800 that just corrupted data during standard writes. ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe,

Re: FYI: 3Ware 9650 can cause data corruption

2007-10-04 Thread Darren Pilgrim
appropiate for this kind of FYI then tell. This is a known issue with 3ware software v9.4.1.0 and 9.4.1.1 (firmware v3.08.00.004). 3ware released software v9.4.1.2 (firmware 3.08.02.005) that corrects the problem over three months ago and it has since been obsoleted by 9.4.1.3 and 9.5.0 (released

FYI: 3Ware 9650 can cause data corruption

2007-10-04 Thread Peter B
kind of FYI then tell. ___ freebsd-hackers@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-hackers To unsubscribe, send any mail to "[EMAIL PROTECTED]"

FYI: Petition against Verisign net abuse at petitiononline.com

2003-09-18 Thread Andrew J Caines
To: ICANN We internet users, who either own domain names or have an interest in the domain name system, wish to object to the Verisign Sitefinder system. ... http://www.petitiononline.com/icanndns/ -Andrew- -- _

Re: FYI: NetBSD mmap Improvements

2003-09-14 Thread Pedro F. Giffuni
Hi again; Reading more deeply,the patch was made to be able to run Linux's crossover office, but it would seem like it's not required on FreeBSD though as out mmap behaves similar to the linux one. FWIW, I found this reference on the NetBSD mailing lists: http://mail-index.netbsd.org/tech-kern/

Re: FYI: NetBSD mmap Improvements

2003-09-10 Thread Bruce M Simpson
On Tue, Sep 09, 2003 at 09:58:03PM -0700, Pedro F. Giffuni wrote: > taken from wine HQ: [snip] Does this make Wine significantly faster for you? Has anybody prepared benchmarks for this? I can take a look at implementing this if it's likely to offer benefits. BMS

FYI: NetBSD mmap Improvements

2003-09-09 Thread Pedro F. Giffuni
taken from wine HQ: http://www.winehq.com/?issue=186#NetBSD mmap Improvements "On NetBSD (upcoming 1.6.2, and 1.7/2.0-current), there is a new extension flag MAP_TRYFIXED that essentially simulates current Linux mmap behavior: try the mmap() hint first, without clobbering mapped pages, even if th

Re: FYI - Just got a kernel panic - RELENG_4

2003-09-04 Thread Marc Ramirez
On Fri, 29 Aug 2003, Kris Kennaway wrote: > On Thu, Aug 28, 2003 at 05:34:29PM -0400, Marc Ramirez wrote: > > > > supped as of ~ 1:40pm EST today > > > > The panic: > > > > Fatal trap 12: page fault while in kernel mode > > This is probably hardware-related, but it's possible it may be due to > a

Re: FYI - Just got a kernel panic - RELENG_4

2003-08-29 Thread Andrew Kinney
On 28 Aug 2003, at 17:34, Marc Ramirez wrote: > c0271430 T vm_page_remove > c02714f8 T vm_page_lookup Your fault address is between those two, so it happened sometime after you entered vm_page_remove. This particular failure is often related to running out of KVM/KVA space (or hardware problem

Re: FYI - Just got a kernel panic - RELENG_4

2003-08-29 Thread Kris Kennaway
On Thu, Aug 28, 2003 at 05:34:29PM -0400, Marc Ramirez wrote: > > supped as of ~ 1:40pm EST today > > The panic: > > Fatal trap 12: page fault while in kernel mode This is probably hardware-related, but it's possible it may be due to a kernel problem. As a first step, you need to try and get a

FYI - Just got a kernel panic - RELENG_4

2003-08-28 Thread Marc Ramirez
supped as of ~ 1:40pm EST today The panic: Fatal trap 12: page fault while in kernel mode fault virtual address = 0x5b4984c8 fault code = supervisor read, page not present instruction pointer = 0x8:0xc02714a9 stack pointer = 0x10:0xd5d3ecf4 frame pointer =

Re: FYI: FreeBSD and Intel/ICP Vortex Raid-Controllers

2002-10-31 Thread Joel Wood
Also, incase your intrested, you can also use icpcon with the iir driver incase you want to fool with the raid from userland. icpcon looks alot like the interface you get when booting. You can look for failures, rebuild the raid, and get statistics. To use icpcon, you just need to: mknod /dev/i

FYI: FreeBSD and Intel/ICP Vortex Raid-Controllers

2002-10-30 Thread Kai Gallasch
Hi, a few days ago I looked through the LINT file of the stable kernel sources and wondered if the "iir" RAID device would also support the ICP vortex line of RAID controllers (INTEL recently bought the manufacturer ICP and with it its whole productline of controllers) So I asked one of the con

Re: FYI

2001-10-21 Thread Sergey Babkin
Mike Smith wrote: > > > So the driver writers > > are forced to at least recompile their drivers for each release. > > This isn't typically the case, actually. 4.x has in fact been very > good in this regard. What about between 3.x and 4.x ? And 5.x is going to be yet another major change.

SBS WANic (was FYI)

2001-10-19 Thread Tim Wiess
I don't doubt that. As I mentioned, there are several factors that I need to check into, especially our agreements with SBS. tim On Fri, 19 Oct 2001, Doug Hass wrote: > Tim, > > Your license with SBS for the DDK would prevent you from posting your > code. If you read through it, you'll find t

Re: FYI

2001-10-19 Thread Julian Elischer
On Thu, 18 Oct 2001, Mike Smith wrote: > > Well, honestly, FreeBSD makes the life of the developers of third-party > > binary-only drivers fairly difficult. > > It does? On the whole, actually, I'd say we do a pretty good job of > making it easy. > > > The reason is that there > > are a lot

Re: FYI

2001-10-19 Thread Doug Hass
Tim, Your license with SBS for the DDK would prevent you from posting your code. If you read through it, you'll find that it prohibits the release of any of their DDK code under any circumstances. You could release everything EXCEPT the API for the card that SBS provides and offer the rest in o

Re: FYI

2001-10-18 Thread Mike Smith
> Well, honestly, FreeBSD makes the life of the developers of third-party > binary-only drivers fairly difficult. It does? On the whole, actually, I'd say we do a pretty good job of making it easy. > The reason is that there > are a lot of API changes happening between the releases (take > Juli

Re: FYI

2001-10-18 Thread Sergey Babkin
Ted Mittelstaedt wrote: > > >From: Doug Hass [mailto:[EMAIL PROTECTED]] > >The lack of flexibility in accepting various requirements illustrates the > >difference between an OS WITH legs in the market and one WITHOUT legs. > > > >Much to my chagrin, FreeBSD continues to fall more and more into th

Re: FYI

2001-10-18 Thread MurrayTaylor
- Original Message - From: "Tim Wiess" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, October 19, 2001 7:12 AM Subject: Re: FYI > > If anyone has an interest in adding support for the SBS WAN cards to > > FreeBSD, feel free to contact m

Re: FYI

2001-10-18 Thread Tim Wiess
> If anyone has an interest in adding support for the SBS WAN cards to > FreeBSD, feel free to contact me. I'll be glad to help. I'm actually working on a driver for the SBS WANic 600 and 800 cards. There is still a lot of work and testing to be done, but (assuming there are no problems with the

Re: FYI

2001-10-18 Thread Tim Wiess
> If anyone has an interest in adding support for the SBS WAN cards to > FreeBSD, feel free to contact me. I'll be glad to help. I'm actually working on a driver for the SBS WANic 600 and 800 cards. There is still a lot of work and testing to be done, but (assuming there are no problems with the

Re: FYI

2001-10-18 Thread Terry Lambert
Doug Hass wrote: > It's not a generalization at all. Honestly, compared to the market > traction that Linux, VxWorks, Solaris and others have, FreeBSD is > definitely without legs. The WAN card and RAS card markets are good > examples of where the attitude toward "BSD-licensed code or bust" has

Re: FYI

2001-10-18 Thread Mike Smith
> >You're a) misrepresenting the project, b) dismissing the opinions and > >statements of others that are arguably more in touch with the project, > >and c) you won't let this stupid thread die. > > I do not feel that this thread is stupid. This much is obvious. You are, however, largely alone

RE: FYI

2001-10-18 Thread Ted Mittelstaedt
>-Original Message- >From: [EMAIL PROTECTED] >[mailto:[EMAIL PROTECTED]]On Behalf Of Mike Smith >Sent: Wednesday, October 17, 2001 10:32 PM >To: Ted Mittelstaedt >Cc: Doug Hass; Leo Bicknell; Jim Bryant; MurrayTaylor; >[EMAIL PROTECTED]; [EMAIL PROTECTED] >Subjec

RE: FYI

2001-10-18 Thread Ted Mittelstaedt
>-Original Message- >From: Bill Fumerola [mailto:[EMAIL PROTECTED]] >Sent: Wednesday, October 17, 2001 11:13 PM >To: Ted Mittelstaedt >Cc: Doug Hass; Mike Smith; Leo Bicknell; Jim Bryant; MurrayTaylor; >[EMAIL PROTECTED]; [EMAIL PROTECTED] >Subject: Re: FYI > >

Re: FYI

2001-10-17 Thread Bill Fumerola
On Wed, Oct 17, 2001 at 10:51:25PM -0700, Ted Mittelstaedt wrote: > When we have a choice, we take the BSD code and improve it as necessary. > Otherwise, we take what we can get. Sometimes, even, companies that release > the stuff > closed source end up opening it up when they see that by doing

RE: FYI

2001-10-17 Thread Ted Mittelstaedt
>-Original Message- >From: Doug Hass [mailto:[EMAIL PROTECTED]] >Sent: Wednesday, October 17, 2001 10:20 AM >To: Mike Smith >Cc: Ted Mittelstaedt; Leo Bicknell; Jim Bryant; MurrayTaylor; >[EMAIL PROTECTED]; [EMAIL PROTECTED] >Subject: Re: FYI > >I'm glad

Re: FYI

2001-10-17 Thread Mike Smith
> >Doug; I would recommend against falling for Ted's flamebait here, since > >that's really all it is. > > That's silly, what did you find in it that's flamebait? I think you didn't > read it. You're a) misrepresenting the project, b) dismissing the opinions and statements of others that are

RE: FYI

2001-10-17 Thread Ted Mittelstaedt
>-Original Message- >From: Mike Smith [mailto:[EMAIL PROTECTED]] >Sent: Wednesday, October 17, 2001 9:46 AM >To: Doug Hass >Cc: Ted Mittelstaedt; Leo Bicknell; Jim Bryant; MurrayTaylor; >[EMAIL PROTECTED]; [EMAIL PROTECTED] >Subject: Re: FYI > > >> >

RE: FYI

2001-10-17 Thread Ted Mittelstaedt
>-Original Message- >From: Doug Hass [mailto:[EMAIL PROTECTED]] >Sent: Wednesday, October 17, 2001 11:10 AM >To: void >Cc: Mike Smith; Ted Mittelstaedt; Leo Bicknell; Jim Bryant; >MurrayTaylor; [EMAIL PROTECTED]; [EMAIL PROTECTED] >Subject: Re: FYI > > >

RE: FYI

2001-10-17 Thread Ted Mittelstaedt
>-Original Message- >From: Doug Hass [mailto:[EMAIL PROTECTED]] >Sent: Wednesday, October 17, 2001 9:19 AM >To: Ted Mittelstaedt >Cc: Leo Bicknell; Jim Bryant; MurrayTaylor; [EMAIL PROTECTED]; >[EMAIL PROTECTED] >Subject: RE: FYI > > >> Doug, in the enti

RE: FYI

2001-10-17 Thread Garance A Drosihn
At 12:50 PM -0700 10/17/01, Jordan Hubbard wrote: >I fully support your idea of offering a "bounty" to anyone writing >drivers for your cards and think you're being more than generous in >offering it. I wish more vendors would do that and I'm sorry that >this discussion has gotten as polarized as

FYI: Cyclades PC300, PC400

2001-10-17 Thread Len Conrad
some snipping done: >Date: Tue, 16 Oct 2001 17:21:55 -0700 (PDT) >From: Cyclades Technical Support <[EMAIL PROTECTED]> >To: Len Conrad <[EMAIL PROTECTED]> >Subject: Re: PC400 >X-Virus-Scanned: by VirusGate.MEIway.com >X-RCPT-TO: <[EMAIL PROTECTED]> > >Hi Len, > My answers are below. >Rega

Re: FYI

2001-10-17 Thread Poul-Henning Kamp
In message <[EMAIL PROTECTED]>, Jordan Hubbard writes: >I fully support your idea of offering a "bounty" to anyone writing >drivers for your cards and think you're being more than generous in >offering it. I wish more vendors would do that and I'm sorry that >this discussion has gotten as polari

RE: FYI

2001-10-17 Thread Jordan Hubbard
> We certainly support the right for companies to protect their intellectual > property in whatever way they see fit, even if the FreeBSD community does > not. Oh my. I can see that we've gone somewhat polemic here. As someone who's been around since the very beginning, I think I can fairly sta

Re: FYI

2001-10-17 Thread Poul-Henning Kamp
Let me cut through all this with a bit of experience if you permit: 1. BSD licensed sources are undoubtedly always preferred. 2. Other open-source licences are the best alternative. 3. closed source solutions are always risky because you don't know if the company will be willing to, or even

Re: FYI

2001-10-17 Thread Doug Hass
If you didn't say it, then you weren't the one I was talking about, was I? :-) I got several other private mails saying that BSD licensed code was the one and only way, and 2 or 3 mails (from Ben, among others) saying that BSD-licensed was preferred. Either approach is as flawed as someone who

Re: FYI

2001-10-17 Thread Alfred Perlstein
* Doug Hass <[EMAIL PROTECTED]> [011017 12:51] wrote: > > > If anyone has an interest in adding support for the SBS WAN cards to > > > FreeBSD, feel free to contact me. I'll be glad to help. > > > > Just package your driver with your cards, or stick it on your support > > site. The whole point

Re: FYI

2001-10-17 Thread Doug Hass
> > If anyone has an interest in adding support for the SBS WAN cards to > > FreeBSD, feel free to contact me. I'll be glad to help. > > Just package your driver with your cards, or stick it on your support > site. The whole point being that you don't *have* to get your code into > the tree;

Re: FYI

2001-10-17 Thread Mike Smith
> It's not a generalization at all. Honestly, compared to the market > traction that Linux, VxWorks, Solaris and others have, FreeBSD is > definitely without legs. The WAN card and RAS card markets are good > examples of where the attitude toward "BSD-licensed code or bust" has > resulted in Fre

Re: FYI

2001-10-17 Thread Doug Hass
> > We certainly support the right for companies to protect their intellectual > > property in whatever way they see fit, even if the FreeBSD community does > > not. > > Doug; I would recommend against falling for Ted's flamebait here, since > that's really all it is. His characterisation of th

Re: FYI

2001-10-17 Thread Mike Smith
> > Doug, in the entire history of the FreeBSD project, when given a choice > > between a better driver or code that is closed source, and a worse > > driver that has open source, the FreeBSD community has never chosen the > > driver or code with closed source. In fact I can only remember ONCE >

RE: FYI

2001-10-17 Thread Doug Hass
> Doug, in the entire history of the FreeBSD project, when given a choice > between a better driver or code that is closed source, and a worse > driver that has open source, the FreeBSD community has never chosen the > driver or code with closed source. In fact I can only remember ONCE > that the

RE: FYI

2001-10-17 Thread Doug Hass
Nic 4xx cards, if you get my drift. Well, if people don't mind buying cards with no drivers...The reason for offering the 400 series at a discount was to solve the supply issue that you raised originally. > Doug, as a FYI, I believe that I can fill in a bit on the state of the sr > dr

Re: FYI

2001-10-16 Thread MurrayTaylor
t;; <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, October 17, 2001 3:32 PM Subject: RE: FYI > >-Original Message- > >From: [EMAIL PROTECTED] > >[mailto:[EMAIL PROTECTED]]On Behalf Of Doug Hass > >Sent: Tuesday, October 16, 2001 9:54 AM >

RE: FYI

2001-10-16 Thread Ted Mittelstaedt
>-Original Message- >From: [EMAIL PROTECTED] >[mailto:[EMAIL PROTECTED]]On Behalf Of Doug Hass >Sent: Tuesday, October 16, 2001 9:54 AM >To: Ted Mittelstaedt >Cc: Leo Bicknell; Jim Bryant; MurrayTaylor; [EMAIL PROTECTED]; >[EMAIL PROTECTED] >Subject: RE: FYI >

RE: FYI

2001-10-16 Thread Ted Mittelstaedt
>-Original Message- >From: [EMAIL PROTECTED] >[mailto:[EMAIL PROTECTED]]On Behalf Of Julian Elischer >Sent: Tuesday, October 16, 2001 5:29 PM >To: Doug Hass >Cc: Ted Mittelstaedt; Jim Bryant; MurrayTaylor; >[EMAIL PROTECTED]; [EMAIL PROTECTED]; Alfred >S

RE: FYI

2001-10-16 Thread Doug Hass
Better than a published interface and white paper, we also provide the direct code itself. You could certainly make a netgraph/SAND interface module. Doug On Tue, 16 Oct 2001, Julian Elischer wrote: > > > On Tue, 16 Oct 2001, Doug Hass wrote: > > > > The "hardware API" or the actual registe

RE: T1 boards (was FYI)

2001-10-16 Thread Chris Knight
Howdy, SBEI have recently put up a new FreeBSD 4.x driver up at ftp://ftp.sbei.com/pub/OpenSource/FreeBSD/FreeBSD_4.3.tar.gz for their wanADAPT range of cards, so they're no longer out of date. Regards, Chris Knight Systems Administrator AIMS Independent Computer Professionals Tel: +61 3 6334 66

Re: T1 boards (was FYI)

2001-10-16 Thread Leo Bicknell
On Wed, Oct 17, 2001 at 11:00:30AM +1100, Chris Knight wrote: > The SBE Inc wanADAPT-1T1E1 is USD$750. The driver works fine on FreeBSD 4.x. > I have provided them with feedback on their documentation and a patch for > BPF support and they are keen on getting the driver incorporated into the > Fre

RE: T1 boards (was FYI)

2001-10-16 Thread Chris Knight
47 > To: Len Conrad > Cc: [EMAIL PROTECTED] > Subject: Re: FYI > > > On Tue, Oct 16, 2001 at 06:35:43PM -0500, Len Conrad wrote: > > Unfortunately, I still looking for somebody who actually > uses SBEI and > > Cyclades T1 boards with FreeBSD. > > I ran across th

RE: FYI

2001-10-16 Thread Matthew N. Dodd
On Tue, 16 Oct 2001, Len Conrad wrote: > Unfortunately, I still looking for somebody who actually uses SBEI and > Cyclades T1 boards with FreeBSD. With IBM 2210 series routers going for well under $100 on the used market I can't see why anyone would opt for a host based solution. The people with

Re: FYI

2001-10-16 Thread Leo Bicknell
On Tue, Oct 16, 2001 at 06:35:43PM -0500, Len Conrad wrote: > Unfortunately, I still looking for somebody who actually uses SBEI and > Cyclades T1 boards with FreeBSD. I ran across them earlier when looking for what T1 boards were out there. Their boards seem nice, and they do have a driver, in

RE: FYI

2001-10-16 Thread Len Conrad
>If there's a published interface, we could make a netgraph/SAND interface >module I think it's better use of hackers' time to look at vendors who already support FreeBSD, such as SBEI and Cyclades, and see why their support for FreeBSD, while apparently useful, is behind the functionality the

RE: FYI

2001-10-16 Thread Julian Elischer
On Tue, 16 Oct 2001, Doug Hass wrote: > > The "hardware API" or the actual register interface code, is a binary-only > > module that is "snapped in" to SAND. SAND is GPL and is similar to the > > FreeBSD Netgraph module - it provides all the higher-level protocol stuff, > > like > > Frame Rela

RE: FYI

2001-10-16 Thread Doug Hass
> As someone else pointed out in this forum, the Hitachi chipset is an > older design. I'm sure that it's probably possible today to design a > sync controller chip that sells for a lot less than the Hitachi part, > perhaps even under the $30 level. Certainly, async chips sell at that > level in

RE: FYI

2001-10-16 Thread Ted Mittelstaedt
>-Original Message- >From: [EMAIL PROTECTED] >[mailto:[EMAIL PROTECTED]]On Behalf Of Doug Hass >Sent: Tuesday, October 16, 2001 7:28 AM >To: Ted Mittelstaedt >Cc: Leo Bicknell; Jim Bryant; MurrayTaylor; [EMAIL PROTECTED]; >[EMAIL PROTECTED] >Subject: RE: FYI >

RE: FYI

2001-10-16 Thread Doug Hass
> There is depending on the price. I'll freely admit however that I have not > priced the competitive serial sync cards that are currently supported > under FreeBSD, so I don't know how the WANic 400 or 500 stacks up against > them. For all I know right now there's someone just bringing a T1 int

RE: FYI

2001-10-16 Thread Doug Hass
> The "hardware API" or the actual register interface code, is a binary-only > module that is "snapped in" to SAND. SAND is GPL and is similar to the > FreeBSD Netgraph module - it provides all the higher-level protocol stuff, > like > Frame Relay, PPP, HDLC, and such. SAND goes between the OS T

RE: FYI

2001-10-16 Thread Ted Mittelstaedt
>-Original Message- >From: Doug Hass [mailto:[EMAIL PROTECTED]] >Sent: Monday, October 15, 2001 8:56 AM >To: Leo Bicknell >Cc: Ted Mittelstaedt; Jim Bryant; MurrayTaylor; >[EMAIL PROTECTED]; [EMAIL PROTECTED] >Subject: Re: FYI > > >In a private e-mail,

RE: FYI

2001-10-16 Thread Ted Mittelstaedt
>-Original Message- >From: Doug Hass [mailto:[EMAIL PROTECTED]] >Sent: Monday, October 15, 2001 8:04 AM >To: Leo Bicknell >Cc: Ted Mittelstaedt; Jim Bryant; MurrayTaylor; >[EMAIL PROTECTED]; [EMAIL PROTECTED]; Alfred >Shippen >Subject: Re: FYI > > >>

RE: FYI

2001-10-16 Thread Ted Mittelstaedt
>-Original Message- >From: Doug Hass [mailto:[EMAIL PROTECTED]] >Sent: Monday, October 15, 2001 6:53 AM >To: Ted Mittelstaedt >Cc: Jim Bryant; MurrayTaylor; [EMAIL PROTECTED]; >[EMAIL PROTECTED]; Alfred Shippen >Subject: RE: FYI > Hi Doug, I'm going to a

RE: FYI

2001-10-15 Thread Ted Mittelstaedt
>-Original Message- >From: Andrew C. Hornback [mailto:[EMAIL PROTECTED]] >Sent: Monday, October 15, 2001 2:59 PM >To: Doug Hass; Ted Mittelstaedt >Cc: Jim Bryant; MurrayTaylor; [EMAIL PROTECTED]; >[EMAIL PROTECTED]; Alfred Shippen >Subject: RE: FYI > &g

RE: FYI

2001-10-15 Thread Doug Hass
> > 1) FreeBSD users can still get the WANic 400 and RISCom cards from the > > second hand market, as another person mentioned. > > What is wrong with THIS picture? You're telling people to purchase used > hardware, instead of purchasing components from your company? *shakes his > head*

RE: FYI

2001-10-15 Thread Andrew C. Hornback
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Doug Hass > Sent: Monday, October 15, 2001 9:53 AM > To: Ted Mittelstaedt > Cc: Jim Bryant; MurrayTaylor; [EMAIL PROTECTED]; > [EMAIL PROTECTED]; Alfred Shippen > Subject: RE: F

Re: FYI

2001-10-15 Thread Doug Hass
In a private e-mail, Leo writes: > You offered a discount on these boards on the list. If you think there > is a real opportunity to sell these to the *BSD crowd, I recomend you > take that 15% (or some part of it) and offer to partially fund a driver > developer. There are many freelance progr

Re: FYI

2001-10-15 Thread Doug Hass
> Would your agreements allow you to provide resources to a small > number of developers (under NDA and all that of course) to produce > drivers that you would then release in binary form (eg a kernel > module) under a free license? It sure would. > If you cannot release the source code to your

Re: FYI

2001-10-15 Thread Leo Bicknell
On Mon, Oct 15, 2001 at 08:53:14AM -0500, Doug Hass wrote: > We are bound by third party agreements and are not allowed to release any > more free code (legally) than we already have. If we were not restricted > by SBS, Trillium, and Rockwell (among others), we would release all of the > code und

RE: FYI

2001-10-15 Thread Doug Hass
> And if you want to sell these to FreeBSD users then make your Linux driver > source (not the SAND stuff) available so that we can mod it into our own > driver. Many other companies do this and as a matter of fact, we (meaning > FreeBSD) have even found bugs in crummy Linux drivers that have bee

RE: FYI

2001-10-15 Thread Ted Mittelstaedt
>-Original Message- >From: [EMAIL PROTECTED] >[mailto:[EMAIL PROTECTED]]On Behalf Of Doug Hass >Sent: Sunday, October 14, 2001 7:23 PM >To: Jim Bryant >Cc: Ted Mittelstaedt; [EMAIL PROTECTED]; MurrayTaylor; >[EMAIL PROTECTED]; [EMAIL PROTECTED]; Alfred >Shippen >

Re: FYI

2001-10-14 Thread Doug Hass
Also--understand that the replacement for the 400 and 405 is a multi-interface card (supports all of the wiring specs instead of just 1), and costs virtually the same (or less as a reseller or in volume) than the 400/405 did. Doug On Sun, 14 Oct 2001, Jim Bryant wrote: > No offense to you or yo

Re: FYI

2001-10-14 Thread Doug Hass
No offense taken--if I was in a position to need the 400 series cards, I'd be snapping up all the used and auction lots I could. Nortel just auctioned off about 1000 of them, so I'd expect that there will be a glut on the used market. If money is the only concern, those cards should be available

Re: FYI

2001-10-14 Thread Jim Bryant
No offense to you or your sales partners, but the way I see it, this means that tons of these will be available for a song on eBay soon, and will be in the hands of a lot of FreeBSD and Linux people [not all of which can afford top-of-the-line all of the time]. Doug Hass wrote: > Ted, > > We

  1   2   >