All of lore.kernel.org
 help / color / mirror / Atom feed
From: Gilles Chanteperdrix <gilles.chanteperdrix@xenomai.org>
To: Jan Kiszka <jan.kiszka@siemens.com>
Cc: xenomai@xenomai.org
Subject: Re: [Xenomai] [Xenomai-git] Jan Kiszka : lib/cobalt: Rework minimum stack size enforcement
Date: Tue, 21 Apr 2015 20:16:02 +0200	[thread overview]
Message-ID: <20150421181602.GD7109@hermes.click-hack.org> (raw)
In-Reply-To: <55369131.9070406@siemens.com>

On Tue, Apr 21, 2015 at 08:04:33PM +0200, Jan Kiszka wrote:
> On 2015-04-21 19:56, Gilles Chanteperdrix wrote:
> > On Tue, Apr 21, 2015 at 07:52:15PM +0200, Jan Kiszka wrote:
> >> On 2015-04-21 18:37, Jan Kiszka wrote:
> >>> Possibly the crash was limited to the case where the application set a
> >>> stack address and Xenomai messed up the size. I'm rechecking this right
> >>> now, and if we are lucky, PTHREAD_STACK_MIN turns out to be fine for
> >>> Xenomai as well.
> >>
> >> Too bad, it wasn't that easy. Just try this, even without Xenomai:
> >>
> >> #include <stdio.h>
> >> #include <pthread.h>
> >> #include <limits.h>
> >>
> >> void *thread_func(void *arg)
> >> {
> >> 	fprintf(stderr, "crash %s\n", "me");
> >> 	return NULL;
> >> }
> >>
> >> int main(int argc, char *argv[])
> >> {
> >> 	pthread_t thread;
> >> 	pthread_attr_t attr;
> >>
> >> 	pthread_attr_init(&attr);
> >> 	pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN);
> >>
> >> 	pthread_create(&thread, &attr, thread_func, NULL);
> >>
> >> 	pthread_join(thread, NULL);
> >>
> >> 	return 0;
> >> }
> >>
> >> Crashes on my x86-64 boxes all the time. stdout/printf is fine. Some
> >> internal glibc function requires a lot of stack space.
> > 
> > Well, as I said several time in that thread, using printf with glibc
> > and PTHREAD_STACK_MIN crashes. Yes, this is an issue I had noticed a
> > long time ago. I always assumed it was because printf used alloca or
> > allocated a large buffer on stack by some other mean.
> > 
> >>
> >> The problem is that we trigger the very same pattern with warning() in
> >> Xenomai. When that is called by the thread trampoline, the user cannot
> >> run threads with otherwise totally fine PTHREAD_STACK_MIN.
> >>
> >> Now we can
> >> - ask the user to specify for more stack (by contract)
> >> - reject too small stacks (my patches)
> >> - warn about too small stacks, but accept them (maybe a compromise)
> >> - simply ignore this
> > 
> > This is not our business. Really.
> > 
> 
> It is our business as we change the interface for the user in a
> non-configurable way.

Again: we should not change the interface for the user. Period.
Whatever he passes to pthread_attr_setstacksize or
pthread_attr_setstack gets used by the glibc. The average user
should not use these interfaces, the users who uses them should know
what he is doing.

What we can change is the default stack size used, pick a stack size
which does not cause printf to segfault (for reasonable string
sizes, of say 80 characters), and hide that in pthread_attr_init.
Because the average user is not going to pass a stack size and can
expect the default to work reasonably well.

> The bare minimum is documentation,

Well, all the books on the pthread API warn you that
pthread_attr_setstack is not a good idea. Maybe even the open group
documentation and the linux documentation do.

> but the more I
> think about, the better is the warning variant: violates no
> specification and still improves the debugging situation of - again -
> valid programs under plain Linux.

I would rather think of something else: a probable stack overflow
detector in the kernel, which prints a message with printk. A
probable stack overflow is easy to do in kernel-space, as the FCSE
code demonstrates. At least this way, the user who uses
PTHREAD_STACK_MIN and knows what he is doing does not get a moronic
warning. Only in case of stack overflow do you get a message, and
you get it even if you passed 2 * PTHREAD_STACK_MIN but overflowed
that.

-- 
					    Gilles.


  reply	other threads:[~2015-04-21 18:16 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <E1Yka0Q-00008c-Jh@sd-51317.xenomai.org>
2015-04-21 15:27 ` [Xenomai] [Xenomai-git] Jan Kiszka : lib/cobalt: Rework minimum stack size enforcement Gilles Chanteperdrix
2015-04-21 16:04   ` Jan Kiszka
2015-04-21 16:06     ` Gilles Chanteperdrix
2015-04-21 16:12       ` Jan Kiszka
2015-04-21 16:16         ` Gilles Chanteperdrix
2015-04-21 16:20           ` Jan Kiszka
2015-04-21 16:32             ` Gilles Chanteperdrix
2015-04-21 16:37               ` Jan Kiszka
2015-04-21 16:40                 ` Gilles Chanteperdrix
2015-04-21 17:52                 ` Jan Kiszka
2015-04-21 17:56                   ` Gilles Chanteperdrix
2015-04-21 18:04                     ` Jan Kiszka
2015-04-21 18:16                       ` Gilles Chanteperdrix [this message]
2015-04-21 18:25                         ` Gilles Chanteperdrix
2015-04-21 18:25                         ` Jan Kiszka
2015-04-21 18:35                           ` Gilles Chanteperdrix
2015-04-21 18:44                           ` Gilles Chanteperdrix
2015-04-21 16:38             ` Gilles Chanteperdrix

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20150421181602.GD7109@hermes.click-hack.org \
    --to=gilles.chanteperdrix@xenomai.org \
    --cc=jan.kiszka@siemens.com \
    --cc=xenomai@xenomai.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.