X-Authentication-Warning: delorie.com: mail set sender to djgpp-workers-bounces using -f From: sandmann AT clio DOT rice DOT edu (Charles Sandmann) Message-Id: <10504092012.AA16787@clio.rice.edu> Subject: Re: DJGPP v2.04 Bugs - suggested patch To: djgpp-workers AT delorie DOT com Date: Sat, 9 Apr 2005 15:12:42 -0500 (CDT) In-Reply-To: <200504091800.j39I0MbM018003@speedy.ludd.ltu.se> from "ams@ludd.ltu.se" at Apr 09, 2005 08:00:22 PM X-Mailer: ELM [version 2.5 PL2] Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavis-20030616-p6 at mail.rice.edu X-DCC--Metrics: handler4.mail.rice.edu 1067; Body=1 Fuz1=1 Fuz2=1 Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > According to Charles Sandmann: > > If someone can find a short name only environment that needs files over > > 2GB, and can show they work, I would suggest they re-write the code to > > support it, without breaking DOS networking. > > Yes, FreeDOS does support 4GB (less two bytes or thereabout) files on > FAT32. (However there are a bug somewhere as the program never stopped > trying to write to the file. I had to C-c it. However I have no time > to dig into this.) This is disturbing - maybe it doesn't work. > Furthermore I have no problems creating files on a Linux Samba share > from either MSDOS 6.22 with MS TCP/IP or DOS COMMAND.COM window in > WINDOWS 98. Creating files was never a problem for the OP, only opening existing files. DOS 6.x shouldn't matter, since it would not try to set the extended size flag. W98 did seem to cause a problem with the OP opening existing files. > However this shows that Charles's (or his bug > reporter's) bug is WINDOWS (I don't remember which version(s) he > mentioned) file server specific. In that case it was impossible to > open the file (right?). The reporter says in report #1: > I am using FreeDOS kernel version 1.1.35 (Build 2035) [May 30 2004], > Kernel compatibility 7.10 - WATCOMC - FAT32 support. I am using the > Microsoft DOS TCP/IP network client mapping a drive to a Windows 2000 > Professional computer. In a second report, he has migrated to Windows 98 DOS (no comment on first or second edition), presumably same Microsoft Networking (no comment on exact version), and notes: > A call to _open(filename, O_RDONLY) returns -1. errno is 10, and > _doserrno is 80. Note: this error is file exists, which we would hope so ... So it may be a problem with the Windows 2000 as the server, if it is sent this FAT extended flag. It is documented in the comments that Windows 2000 fails open calls with this flag; maybe it fails also if sent this flag as the server. It could also be your test above was a file create instead of an open of an existing file. More testing is required. A quick analysis of _open does not show a good way to fail and retry without a complete restructuring of the code, or maybe additional flag variables. Since _open can be sent anything from files without paths to devices with prepended drives - trying to determine if it's a network file is not trivial either. There is always the chance that the LFN big bit set call fails with Windows 2000 as the server also. I haven't committed the change while we discuss. I also do not have time this week to do testing, since it's the annual insanity known as income tax time.