Blame sysdeps/unix/sysv/linux/pthread_setname.c

Packit 6c4009
/* pthread_setname_np -- Set  thread name.  Linux version
Packit 6c4009
   Copyright (C) 2010-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public License as
Packit 6c4009
   published by the Free Software Foundation; either version 2.1 of the
Packit 6c4009
   License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; see the file COPYING.LIB.  If
Packit 6c4009
   not, see <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#include <errno.h>
Packit 6c4009
#include <fcntl.h>
Packit 6c4009
#include <pthreadP.h>
Packit 6c4009
#include <stdio.h>
Packit 6c4009
#include <string.h>
Packit 6c4009
#include <unistd.h>
Packit 6c4009
#include <sys/prctl.h>
Packit 6c4009
Packit 6c4009
#include <not-cancel.h>
Packit 6c4009
Packit 6c4009
Packit 6c4009
int
Packit 6c4009
pthread_setname_np (pthread_t th, const char *name)
Packit 6c4009
{
Packit 6c4009
  const struct pthread *pd = (const struct pthread *) th;
Packit 6c4009
Packit 6c4009
  /* Unfortunately the kernel headers do not export the TASK_COMM_LEN
Packit 6c4009
     macro.  So we have to define it here.  */
Packit 6c4009
#define TASK_COMM_LEN 16
Packit 6c4009
  size_t name_len = strlen (name);
Packit 6c4009
  if (name_len >= TASK_COMM_LEN)
Packit 6c4009
    return ERANGE;
Packit 6c4009
Packit 6c4009
  if (pd == THREAD_SELF)
Packit 6c4009
    return prctl (PR_SET_NAME, name) ? errno : 0;
Packit 6c4009
Packit 6c4009
#define FMT "/proc/self/task/%u/comm"
Packit 6c4009
  char fname[sizeof (FMT) + 8];
Packit 6c4009
  sprintf (fname, FMT, (unsigned int) pd->tid);
Packit 6c4009
Packit 6c4009
  int fd = __open64_nocancel (fname, O_RDWR);
Packit 6c4009
  if (fd == -1)
Packit 6c4009
    return errno;
Packit 6c4009
Packit 6c4009
  int res = 0;
Packit 6c4009
  ssize_t n = TEMP_FAILURE_RETRY (__write_nocancel (fd, name, name_len));
Packit 6c4009
  if (n < 0)
Packit 6c4009
    res = errno;
Packit 6c4009
  else if (n != name_len)
Packit 6c4009
    res = EIO;
Packit 6c4009
Packit 6c4009
  __close_nocancel_nostatus (fd);
Packit 6c4009
Packit 6c4009
  return res;
Packit 6c4009
}