Displaying 20 results from an estimated 55 matches for "xrealloc".
Did you mean:
realloc
2017 May 06
2
xrealloc namespace conflict
I have a package on CRAN now (corpus-0.3.1) that is currently failing
tests on Linux, but passing on all other architectures:
https://cran.r-project.org/web/checks/check_results_corpus.html
I believe that the issue arrises from a namespace class between
"xrealloc", which my package provides for internal use, but which R also
seems to provide (possibly as part of TRE in src/extra/tre/xmalloc.c).
It looks like my package is not picking up my custom xrealloc, but using
an xrealloc provided by R.
Besides the fact that I am linking to the wrong xrealloc...
2017 May 11
1
xrealloc namespace conflict
...May 2017 at 12:16, Patrick Perry wrote:
| I've done a bit more investigation into this issue. Here is my current
| understanding of the situation:
|
| 1. I have a package on CRAN (corpus-0.3.1) that passes tests on all
| platforms except for Linux.
| 2. My package defines a C function, "xrealloc", for internal use.
| 3. The libreadline library that R links to defines a different version
| of "xrealloc".
| 4. On Linux, when I load my package, references to "xrealloc" get linked
| to the libreadline version of that function.
| 5. This causes one of my tests to fail...
2017 May 11
0
xrealloc namespace conflict
I've done a bit more investigation into this issue. Here is my current
understanding of the situation:
1. I have a package on CRAN (corpus-0.3.1) that passes tests on all
platforms except for Linux.
2. My package defines a C function, "xrealloc", for internal use.
3. The libreadline library that R links to defines a different version
of "xrealloc".
4. On Linux, when I load my package, references to "xrealloc" get linked
to the libreadline version of that function.
5. This causes one of my tests to fail, calling...
2002 Jun 27
3
UsePrivilegeSeparation: "fatal: xrealloc: out of memory"
...f
privilege separation. After installation, when a user tries to login
he gets dropped almost immediately. In the server's
/var/log/messages:
Jun 26 20:15:04 sclp3 sshd[6433]: Accepted password for jason from 128.165.148.66 port 41871 ssh2
Jun 26 20:15:12 sclp3 jason[110]: sshd[6444]: fatal: xrealloc: out of memory (new_size 5566464 bytes)
The server is running BSD/OS 4.0, whose mmap(2) seems to indicate that
it supports anonymous (MAP_ANON) memory mapping. I've created
/var/empty and a sshd user and group.
Setting "UsePrivilegeSeparation no" in sshd_config clears up this
probl...
2003 Sep 16
5
OpenSSH Security Advisory: buffer.adv
...ease the size of the buffer and retry. */
- buffer->alloc += len + 32768;
- if (buffer->alloc > 0xa00000)
+
+ newlen = buffer->alloc + len + 32768;
+ if (newlen > 0xa00000)
fatal("buffer_append_space: alloc %u not supported",
- buffer->alloc);
- buffer->buf = xrealloc(buffer->buf, buffer->alloc);
+ newlen);
+ buffer->buf = xrealloc(buffer->buf, newlen);
+ buffer->alloc = newlen;
goto restart;
/* NOTREACHED */
}
2003 Sep 16
1
OpenSSH Security Advisory: buffer.adv
...ease the size of the buffer and retry. */
- buffer->alloc += len + 32768;
- if (buffer->alloc > 0xa00000)
+
+ newlen = buffer->alloc + len + 32768;
+ if (newlen > 0xa00000)
fatal("buffer_append_space: alloc %u not supported",
- buffer->alloc);
- buffer->buf = xrealloc(buffer->buf, buffer->alloc);
+ newlen);
+ buffer->buf = xrealloc(buffer->buf, newlen);
+ buffer->alloc = newlen;
goto restart;
/* NOTREACHED */
}
2003 Sep 16
1
[alambert@quickfire.org: Heads up -- potential problems in 3.7, too? [Fwd: OpenSSH Security Advisory: buffer.adv]]
...ease the size of the buffer and retry. */
- buffer->alloc += len + 32768;
- if (buffer->alloc > 0xa00000)
+
+ newlen = buffer->alloc + len + 32768;
+ if (newlen > 0xa00000)
fatal("buffer_append_space: alloc %u not supported",
- buffer->alloc);
- buffer->buf = xrealloc(buffer->buf, buffer->alloc);
+ newlen);
+ buffer->buf = xrealloc(buffer->buf, newlen);
+ buffer->alloc = newlen;
goto restart;
/* NOTREACHED */
}
Index: channels.c
===================================================================
RCS file: /cvs/src/usr.bin/ssh/channels.c,...
2004 Jun 23
8
[Bug 884] DSA keys (id_dsa.pub) with 8192 bits or more aren't correctly recognized
http://bugzilla.mindrot.org/show_bug.cgi?id=884
dmr at gmx.it changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|DSA keys (id_dsa.pub) with |DSA keys (id_dsa.pub) with
|8192 bytes or more aren't |8192 bits or more aren't
|correctly
2001 Aug 15
1
ProxyCommand broken in SNAP-20010814
....
--- readconf.c:X Mon Aug 6 23:35:52 2001
+++ readconf.c Wed Aug 15 16:11:44 2001
@@ -475,6 +475,7 @@
case oProxyCommand:
charptr = &options->proxy_command;
+ string = xstrdup("");
while ((arg = strdelim(&s)) != NULL && *arg != '\0') {
string = xrealloc(string, strlen(string) + strlen(arg) + 2); strcat(string, " ");
--Pavel Kankovsky aka Peak [ Boycott Microsoft--http://www.vcnet.com/bms ]
"Resistance is futile. Open your source code and prepare for assimilation."
2013 Jan 27
1
null pointer dereference in krl.c?
Hi,
In ssh_krl_from_blob(), krl.c:984,
/* Record keys used to sign the KRL */
xrealloc(ca_used, nca_used + 1, sizeof(*ca_used));
ca_used[nca_used++] = key;
The result of `xrealloc' is never assigned to `ca_used', which remains
a null pointer. Will ca_used[...] crash?. Did I miss anything?
Thanks.
- xi
2005 Sep 23
7
[Bug 1090] Increase MAX_SESSIONS?
http://bugzilla.mindrot.org/show_bug.cgi?id=1090
Summary: Increase MAX_SESSIONS?
Product: Portable OpenSSH
Version: -current
Platform: All
OS/Version: All
Status: NEW
Severity: enhancement
Priority: P2
Component: sshd
AssignedTo: bitbucket at mindrot.org
ReportedBy: cjwatson at debian.org
1998 Mar 27
1
R-beta: Problems during compilation of R for Solaris 2.6
...gt;> ../lib/libunix.a ../lib/libappl.a ../lib/libmath.a -lSM -lICE -L/usr/openwin/lib >> -R/usr/openwin/lib -lX11 -lsocket -lnsl -ldl -lreadline -ltermcap -lm
>>
>> Undefined first referenced
>> symbol in file
>> xrealloc /usr/local/lib/libreadline.a(readline.o)
>> xmalloc /usr/local/lib/libreadline.a(readline.o)
>> ld: fatal: Symbol referencing errors. No output written to R.binary
>> *** Error code 1
>> make: Fatal error: Command failed...
2003 Sep 15
1
Fwd: Re: [Full-Disclosure] new ssh exploit?
Has anyone around here heard of this ?
---Mike
>Subject: Re: [Full-Disclosure] new ssh exploit?
>From: christopher neitzert <chris@neitzert.com>
>Reply-To: chris@neitzert.com
>To: full-disclosure@lists.netsys.com
>X-Mailer: Ximian Evolution 1.4.3.99
>Sender: full-disclosure-admin@lists.netsys.com
>X-BeenThere: full-disclosure@lists.netsys.com
2004 Feb 20
1
NGROUPS_MAX on Linux
...= -1;
/*
@@ -68,17 +68,27 @@
privileged = 1;
temporarily_use_uid_effective = 1;
- saved_egroupslen = getgroups(NGROUPS_MAX, saved_egroups);
+
+ saved_egroupslen = getgroups(0, NULL);
if (saved_egroupslen < 0)
fatal("getgroups: %.100s", strerror(errno));
+ saved_egroups = xrealloc(saved_egroups,
+ saved_egroupslen * sizeof(*saved_egroups));
+ if (getgroups(saved_egroupslen, saved_egroups) < 0)
+ fatal("getgroups: %.100s", strerror(errno));
/* set and save the user's groups */
if (user_groupslen == -1) {
if (initgroups(pw->pw_name, pw->pw_...
2001 Jul 25
1
[PATCH]: sftp: Avoid paths beginning with "//"
...===============================================================
RCS file: /cvs/openssh_cvs/sftp-server.c,v
retrieving revision 1.34
diff -u -p -r1.34 sftp-server.c
--- sftp-server.c 2001/07/04 03:32:33 1.34
+++ sftp-server.c 2001/07/25 08:44:31
@@ -756,8 +756,8 @@ process_readdir(void)
stats = xrealloc(stats, nstats * sizeof(Stat));
}
/* XXX OVERFLOW ? */
- snprintf(pathname, sizeof pathname,
- "%s/%s", path, dp->d_name);
+ snprintf(pathname, sizeof pathname, "%s%s%s", path,
+ strcmp(path, "/") ? "/" : "", dp->d_name);...
2004 Jun 01
1
Sending immediate PAM auth failure messages via kbd-int
Hi.
One thing that people seem to want to do with PAM is to deny a login
immediately without interacting but return a message to the user. (Some
platforms implement, eg, /etc/nologin via PAM this way.) Currently, sshd
will just deny the login and the user will not be told why.
Attached it a patch that return a keyboard-interactive packet with the
message in the "instruction"
2000 Feb 04
0
Patch that allows equal sign in options
...linenum);
if (*activep && *charptr == NULL)
@@ -400,7 +401,7 @@
case oProxyCommand:
charptr = &options->proxy_command;
string = xstrdup("");
- while ((cp = strtok(NULL, WHITESPACE)) != NULL) {
+ while ((cp = strtok(NULL, WHITESPACE_EQ)) != NULL) {
string = xrealloc(string, strlen(string) + strlen(cp) + 2);
strcat(string, " ");
strcat(string, cp);
@@ -414,7 +415,7 @@
case oPort:
intptr = &options->port;
parse_int:
- cp = strtok(NULL, WHITESPACE);
+ cp = strtok(NULL, WHITESPACE_EQ);
if (!cp)
fatal("%.200s line %d: Mi...
2002 Feb 06
2
SFTP Status Bar..
...c Tue Jul 3 23:46:58 2001
+++ openssh/misc.c Wed Feb 6 13:15:55 2002
@@ -30,6 +30,7 @@
#include "misc.h"
#include "log.h"
#include "xmalloc.h"
+#include "atomicio.h"
/* remove newline at end of string */
char *
@@ -304,6 +305,139 @@
args->list = xrealloc(args->list, args->nalloc * sizeof(char *));
args->list[args->num++] = xstrdup(buf);
args->list[args->num] = NULL;
+}
+
+/* scp/sftp progression meter (from src/usr.bin/ftp/util.c) */
+static int
+foregroundproc(void)
+{
+ static pid_t pgrp = -1;
+ int ctty_pgrp;
+
+ if (pgrp =...
2002 Apr 15
0
[Bug 216] New: ssh-keygen vs. SSH Version 2.0.13 hostkeys
...y: normal
Priority: P2
Component: ssh-keygen
AssignedTo: openssh-unix-dev at mindrot.org
ReportedBy: coder at mindspring.com
Using precompiled binaries from sunfreeware.com, I have the following problem:
# ssh-keygen -i -f ./hostkey
ssh_dss_sign: sign failed
xrealloc: out of memory (new_size 4290723536 bytes)
This appears to be the same problem occurring in Bug#187.
I am running Solaris 8, essentially stock.
This problem has been duplicated on AIX 4.3 as well, although Tru64 4F seems to work properly.
When I downloaded and used the OpenSSH 3.0.2 binaries from...
2010 Nov 09
0
[ANNOUNCE] xf86-video-geode 2.11.10
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Andres Salomon (1):
fix the DCON verification loop for LX output
Daniel Drake (2):
Add get_crtc output function
Don't power down DCON when it is frozen
Frank Huang (4):
Replace xalloc/xrealloc/xfree/xcalloc with malloc/realloc/free/calloc
Mode Validation support on modeline in xorg.conf
Fix a typo on resolution parameter
Add resolution 1024x600 support for PANEL
Huang, FrankR (2):
Revise the entry for 1024x600
Simplify the mode_valid function
Hunk (1):...