File handler's limit crossing 256 - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T21:44:24Z http://stackoverflow.com/feeds/question/312091 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/312091/file-handlers-limit-crossing-256 2 File handler's limit crossing 256 DL Kumar 2008-11-23T03:49:58Z 2008-11-24T10:00:41Z <p>Hi, My code opens more than 256 file handles, So When I run it on solaris machines I am ending up in "Exceeding file handlers limit" error. </p> <p>I have two questions regarding this</p> <p>1) Is this limit is only for 32 bit softwares or 64 bit softwares also suffer from it. I googled about it and came to know that 64 bit softwares do not have this limit.(<a href="http://developers.sun.com/solaris/articles/stdio_256.html" rel="nofollow">http://developers.sun.com/solaris/articles/stdio_256.html</a>) But I built 64 bit static object and when i use this it is giving the error. What actually 64 bit software means?</p> <p>2) As given in the above link I used ulimit to increase file handlers limit (in run time, I mean just before running the command), exported extendedFile library and I am not got getting any error.What we have to do incase of Linux?</p> <p>Thanks D. L. Kumar</p> http://stackoverflow.com/questions/312091/file-handlers-limit-crossing-256/312106#312106 1 Answer by strager for File handler's limit crossing 256 strager 2008-11-23T04:09:29Z 2008-11-23T04:09:29Z <p>To check if an object file (executable) is 64-bit, use the file command (at least on Linux).</p> <p>For example:</p> <pre><code>$ file `which ls` /bin/ls: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), for GNU/Linux 2.6.9, dynamically linked (uses shared libs), stripped $ file my-32bit-exe my-32bit-exe: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), corrupted section header size </code></pre> <p>(Don't mind the "corrupted section header size" -- exe was manually mangled to reduce filesize).</p> <p>ulimit can be used on Linux (see <a href="http://linux.die.net/man/1/ulimit" rel="nofollow">ulimit(1)</a> and <a href="http://linux.die.net/man/3/ulimit" rel="nofollow">ulimit(3)</a>).</p> http://stackoverflow.com/questions/312091/file-handlers-limit-crossing-256/312110#312110 3 Answer by Evan Teran for File handler's limit crossing 256 Evan Teran 2008-11-23T04:14:07Z 2008-11-23T06:20:53Z <p>I've encountered this before. As far as I can tell, it is actually a bug in solaris's libc where they use an 8-bit unsigned integer type to store the fd in the FILE struct. Apparently they didn't change it very quickly in the name of backwards compatibility (in case a program for some reason was dependent on the implementation details of the FILE struct). This should <em>NOT</em> be an issue on Linux or any other non-solaris *nix. The article you cited suggested reasonable workarounds, so you should use those.</p> <p>As for "what is a 64-bit executable", well it's just a binary which has been compiled for a 64-bit instruction set. Some architectures support both some don't. (For example x86-64 OSes typically allow for 32-bit processes for backwards compatibility).</p> http://stackoverflow.com/questions/312091/file-handlers-limit-crossing-256/312177#312177 1 Answer by Jonathan Leffler for File handler's limit crossing 256 Jonathan Leffler 2008-11-23T05:52:09Z 2008-11-23T05:52:09Z <p>On Solaris, you build 64-bit programs using either:</p> <pre><code>cc -xarch=v9 ... </code></pre> <p>Or:</p> <pre><code>gcc -m64 ... </code></pre> <p>As Evan said, the fundamental problem for 32-bit Solaris is backwards binary compatibility and an 8-bit integer used to hold the fd.</p> <p>I just tried this code on Solaris 10 for SPARC:</p> <pre><code>#include &lt;stdio.h&gt; int main(void) { size_t i; for (i = 0; i &lt; 300; i++) { FILE *fp = fopen("/dev/null", "a"); if (fp == 0) { printf("Failed on %zu\n", i); return(1); } } printf("Succeeded to %zu\n", i); return(0); } </code></pre> <p>Compiled as:</p> <pre><code>cc -xarch=v9 -o xxx xxx.c </code></pre> <p>And it gave me 'failed on 253'. (It's test code: I know it throws away 252 pointers.) This supports your contention that a simple 64-bit build. However, there's another factor at play - the resource limits.</p> <pre><code>$ ulimit -n 256 $ </code></pre> <p>So, increasing the default limit with:</p> <pre><code>$ ulimit -n 400 $ ulimit -n 400 $ ./xxx Succeeded to 300 $ </code></pre> <p>Try that...</p> http://stackoverflow.com/questions/312091/file-handlers-limit-crossing-256/312587#312587 0 Answer by njsf for File handler's limit crossing 256 njsf 2008-11-23T14:50:23Z 2008-11-23T14:50:23Z <p>Like Evan Teran mentioned, solaris libc has this "odd" limitation on FILE that it can only handle file handles under 256.</p> <p>This is regardless the limit you can set with ulimit. You can set this limit from withing your program with:</p> <pre><code>#include &lt;sys/resource.h&gt; struct rlimit rl; getrlimit(RLIMIT_NOFILE,&amp;rl); rl.rlim_cur = 1024; /* change it to 1024 - note has to be &lt; than rl.rlim_max */ setrlimit(RLIMIT_NOFILE,&amp;rl); </code></pre> <p>Now, I would also stop using FILE* and use open instead of fopen, etc etc. For the cases you really, really need to use FILE*, on several projects I worked, at the start of the program several file descriptors were "reserved" by doing a socket call, and we had a small library to get a FILE* using these, by closing one of the sockets and right after that doing a fopen, which will use the just closed fd. Of course one would also need to close the FILE* with a special function that would fclose and then get the fd right away using socket ;-)</p> http://stackoverflow.com/questions/312091/file-handlers-limit-crossing-256/313346#313346 0 Answer by DL Kumar for File handler's limit crossing 256 DL Kumar 2008-11-24T03:25:16Z 2008-11-24T03:25:16Z <p>Thanks lot, everybody. I will try these things now.</p> <p>Hi njsf, fopen is giving some problems when it tries to open very large files, So I started using FILE* </p> <p>(btw, This forum is very good and helpful. Looking forward to contribute). Thanks D. L. Kumar</p> http://stackoverflow.com/questions/312091/file-handlers-limit-crossing-256/313663#313663 0 Answer by DL Kumar for File handler's limit crossing 256 DL Kumar 2008-11-24T08:29:55Z 2008-11-24T08:29:55Z <p>Hi, It seems to me that only ulimit is the solution and opening file with F flag. njsf, I tried using your code but it did not work. Do I need to do any thing more.</p> <p>Thanks D. L. Kumar</p> http://stackoverflow.com/questions/312091/file-handlers-limit-crossing-256/313803#313803 0 Answer by DL Kumar for File handler's limit crossing 256 DL Kumar 2008-11-24T10:00:41Z 2008-11-24T10:00:41Z <p>Hi, Finally I got the solution. I made two changes in my code to make it work</p> <p>1) as suggested above by njsf</p> <p>2) Opening file with "F" flag, as follows FILE *fp = fopen("/dev/null", "wF");</p> <p>Thanks a lot. D. L. Kumar</p>