search for: oversized

Displaying 20 results from an estimated 160 matches for "oversized".

2019 Jun 14
0
[libnbd PATCH 6/7] states: Give up on oversized reply length
...} + /* Reject a server that replies with too much information, but don't + * reject a single structured reply to NBD_CMD_READ on the largest + * size we were willing to send. The most likely culprit is a server + * that replies with block status with way too many extents, but any + * oversized reply is going to take long enough to resync that it is + * not worth keeping the connection alive. + */ + if (length > MAX_REQUEST_SIZE + sizeof h->sbuf.sr.payload.offset_data) { + set_error (0, "invalid server reply length"); + SET_NEXT_STATE (%.DEAD); + return -1; +...
2007 Apr 18
5
[Bridge] Any way of knowing a packet's been defragmented
Hello, Due to a recent change in the bridge code, we now need a way of knowing if a packet has been defragmented. The bridge code now checks on the packet size and drops packets that are too big for the output port. Defragmented packets will get refragmented later, so they shouldn't be dropped. I've been reading the defragmentation code and can't find an easy way of knowing if a
2007 Sep 08
3
imap webmail client needed
Hi list, I?m searching a webmail imap client including a calendar and a todo list (last is not necessary) for 2 or 3 users. I have tried zimbra but it?s too oversized for my claim. Do someone have a hint? Thanks. Kamill
2007 Apr 21
2
Cron error
Hello, This morning, root received an e-mail from the cron daemon as the following: -------------------------------- Subject: Cron <root> run-parts /etc/cron.daily /etc/cron.daily:00webalizer: Warning: Truncating oversized referrer field -------------------------------- I haven't changed anything to cron or to my intranet website (I'm assuming that's what the webalizer is about) in the last few days. I did do a reboot yesterday which was the first one in a few weeks. Does anybody know what this mess...
2020 Jan 14
1
nut on armhf, r-pi4b IOW
...wall bc to every > login it is servicing? > > There was no power failure IOW. The thing is that many UPS models will report "on battery" when the voltage fluctuates out of range, but a switching power supply might still be able to coast through it-- especially if the supply is oversized for the load at the time of the abnormality. Since both "outages" (really, the on-battery states) were exactly 10 seconds long means that the UPS was probably trying to "debounce" the voltage fluctuation by not switching back to line power immediately after the voltage went bac...
2005 Oct 03
3
large smb.conf file
I have about 5000 distinct shares defined in my smb.conf file. As you can imagine it's quite large. Everyone once in awhile all the smbd daemons ( in top ) go to a run state and pretty much bring the system to a halt. The system is WAY oversized. 99.999% of the day samba runs fine. We _THINK_ we've narrowed down the times when the smbd processes go crazy to a time when we're updating the smb.conf file. Does this sound reasonable? Is there a better way to create the neccessary shares? Thanks Travis //~~~//~~~//~~~//~~~//~~~//~...
2002 Oct 27
2
Isolinux Information
I am using isolinux to load the floppy firewall project. I have a bootable floppy and the configuration works well. I have managed to get isolinux to load the operating system but when it comes time to mount (something?) in response to the root=??? part of the append line the operation stops and I land in a shell without having loaded any of the firewall files to the ram disk. All of the
2017 Mar 14
2
[cfe-dev] [4.0.0 Release] 'final' has been tagged
...s not. > > I see that sqlite3 as well as m4 package pokes the compiler for these > builtins before using them. For clang it uses __has_builtin() to > determine if a given builtin is supported before using it. > > see > http://git.savannah.gnu.org/cgit/gnulib.git/tree/lib/xalloc-oversized.h > > That is the source of trouble, since its in gnulib that explains why its > showing up in lot of packages. > > perhaps this commit here > http://git.savannah.gnu.org/cgit/gnulib.git/commit/lib/xalloc-oversized.h?id=9c919a06435266a88d91ffb9eb3f70a82aa65b4b > > brings thi...
2009 Apr 28
2
Dropping 'empty' panels from lattice
I have 8 cofactors possibly affecting one and only one variable. I make conditional histograms: <-pdf(file="tst3.pdf",paper="special",width=36,height=36) <-histogram(~Oversized|dat$c1*dat$c2*dat$c5*dat$c6*dat$c7*dat$c8*dat$c9*dat$c10,nint=21,layout=c(32,8),data=dat,type="count") <-dev.off() This works (compliments to R developers!) but it does generate a large plot with many panels being 'empty', e.g. that combination of factors c1..c10 never occurs...
2009 Mar 03
2
imap locking spool?
How does IMAP lock the /var/spool/mail/user file? Here's my problem: I'm writing a script to expire old or oversize mail through a series of archive folders. I don't want to take the whole server down to do this, nor does it seem like I would have to lock the user out entirely if I can manage to emulate the locks correctly. I am able to lock /var/spool/mail/user (and ~user/mail/*)
2006 Jun 02
1
Multivariate skew-t cdf
Dear All, I am using the pmst function from the sn package (version 0.4-0). After inserting the example from the help page, I get non-trivial answers, so everything is fine. However, when I try to extend it to higher dimension: xi <- alpha <- x <- rep(0,27) Omega <- diag(0,27) p1 <- pmst(x, xi, Omega, alpha, df = 5) I get the following result: >p1 [1] 0 attr(,"error")
2017 Mar 10
4
[cfe-dev] [4.0.0 Release] 'final' has been tagged
Hi Khem, On Fri, Mar 10, 2017 at 1:03 PM, Khem Raj via llvm-dev <llvm-dev at lists.llvm.org> wrote: > On Fri, Mar 10, 2017 at 7:01 AM, Renato Golin via llvm-dev > <llvm-dev at lists.llvm.org> wrote: >> ARM and AArch64 looking good, uploaded. >> > > This is not particularly related to this RC but in general with 4.0.0 > I am seeing a failure quite common
2002 Jul 30
1
OpenSSL Security Advisory [30 July 2002]
...isory. Advisory 1 ========== A.L. Digital Ltd and The Bunker (http://www.thebunker.net/) are conducting a security review of OpenSSL, under the DARPA program CHATS. Vulnerabilities --------------- All four of these are potentially remotely exploitable. 1. The client master key in SSL2 could be oversized and overrun a buffer. This vulnerability was also independently discovered by consultants at Neohapsis (http://www.neohapsis.com/) who have also demonstrated that the vulerability is exploitable. Exploit code is NOT available at this time. 2. The session ID supplied to a client in...
2019 Jun 28
3
[libnbd PATCH] tests: Enhance errors test
...and flags */ + if (nbd_pread (nbd, NULL, 0, 0, -1) != -1) { + fprintf (stderr, "%s: test failed: " + "nbd_pread did not fail with bogus flags\n", + argv[0]); + exit (EXIT_FAILURE); + } + check (EINVAL, "nbd_pread: "); + + /* Check that oversized requests are rejected */ + if (nbd_pread (nbd, buf, MAXSIZE, 0, 0) != -1) { + fprintf (stderr, "%s: test failed: " + "nbd_pread did not fail with oversize request\n", + argv[0]); + exit (EXIT_FAILURE); + } + check (ERANGE, "nbd_pread: "...
2007 Apr 18
2
[Bridge] large packet size doesn't work
Hi, I have just configured a Linux box with kernel 2.6.16.7 and configured two ethernet interfaces (with MTU 1500) in bridge mode. CONFIG_BRIDGE_NETFILTER is enabled. The problem is that ping -s 1500 192.168.0.2 doesn't work from 192.168.0.1 if the systems are separated by the bridge. Normal ping with smaller packet size works ok. What is wrong? Best Regards Fulvio Ricciardi
2011 Jul 22
2
Keyboards
On my new Dell system, it's got a cardreader. More to the point, it's got an idiot menu key... *right* next to the right control key, and just where the annoying keyboard design has it cut down from the oversize space bar ASCII art <ctrl><WinDoze> <tall[ ]<tall<tall<tall <ctrl> Alt>[ tall spacebar ] alt> Win>
2007 Nov 12
3
DO NOT REPLY [Bug 5075] New: Syncing with --iconv may yield protocol error
...eeds to convert the message data before sending its length. Here is a possible rewrite: /* Write an message to a multiplexed stream. If this fails, rsync exits. */ static void mplex_write(int fd, enum msgcode code, const char *buf, size_t len, int convert) { char buffer[BIGPATHBUFLEN]; /* Oversized for use by iconv code. */ size_t n = len; #ifdef ICONV_OPTION if (convert && ic_send == (iconv_t)-1) #endif convert = 0; #ifdef ICONV_OPTION /* We need to convert buf before doing anything else so that we * can include the (converted) byte...
2007 Apr 17
1
problem setting ntlm authentication for apache using mod_auth_winbind
Hello list, I'm trying to set up ntlm authentication for using mod_auth_winbind. Unfortunately during the "ntlm dance" some errors occurs. It complains about Oversized message, Invalid request and ntlm_auth goes to defunc... ( broken pipe as we can see in apache error log file ) apache 31623 31578 1 19:25 ? 00:00:00 [ntlm_auth] <defunct> Log file from apache is here: http://ncpnc.obsysa.net/combor/apache_arror.log I was trying to trace problem...
2002 Jan 01
1
Transparent bridging / smart rate limiting
...''t find any information about what I would like to do. And therefore I now send a mail to this mailinglist in hope that someone can either help me, or point me in the right direction. What I want to do is the following: Make a transparent bridge that starts dropping ICMP packets that are oversized(malicious icmp), drop all syn packets that comes from spoofed hosts(non existent ip''s), drop other obvious malicious traffic. My problem is not dropping packets(hehe), the problem is dropping packets based on these rules, so that legit icmp/syn traffic etc will not be affected by the rules...
2023 Aug 03
2
[libnbd PATCH v4 05/25] golang: Change logic of copy_uint32_array
...to Go's copy(). Using a common style between both list copying helpers is beneficial to mainenance. Additionally, at face value, converting C.size_t to int may truncate; we could avoid that risk if we were to uniformly use uint64 instead of int. But we can equally just panic if the count is oversized: our state machine guarantees that the server's response fits within 64M bytes (count will be smaller than that, since it is multiple bytes per extent entry). Suggested-by: Laszlo Ersek <lersek at redhat.com> CC: Nir Soffer <nsoffer at redhat.com> Signed-off-by: Eric Blake <ebla...