Blame


1 83f0f95a 2022-09-29 op /*
2 83f0f95a 2022-09-29 op * Copyright (c) 2016 Nicholas Marriott <nicholas.marriott@gmail.com>
3 83f0f95a 2022-09-29 op *
4 83f0f95a 2022-09-29 op * Permission to use, copy, modify, and distribute this software for any
5 83f0f95a 2022-09-29 op * purpose with or without fee is hereby granted, provided that the above
6 83f0f95a 2022-09-29 op * copyright notice and this permission notice appear in all copies.
7 83f0f95a 2022-09-29 op *
8 83f0f95a 2022-09-29 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 83f0f95a 2022-09-29 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 83f0f95a 2022-09-29 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 83f0f95a 2022-09-29 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 83f0f95a 2022-09-29 op * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
13 83f0f95a 2022-09-29 op * IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
14 83f0f95a 2022-09-29 op * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 83f0f95a 2022-09-29 op */
16 83f0f95a 2022-09-29 op
17 83f0f95a 2022-09-29 op #include <sys/types.h>
18 83f0f95a 2022-09-29 op
19 83f0f95a 2022-09-29 op #include <stdarg.h>
20 83f0f95a 2022-09-29 op #include <stdio.h>
21 83f0f95a 2022-09-29 op #include <string.h>
22 83f0f95a 2022-09-29 op
23 83f0f95a 2022-09-29 op #include "../config.h"
24 83f0f95a 2022-09-29 op
25 83f0f95a 2022-09-29 op void setproctitle(const char *, ...);
26 83f0f95a 2022-09-29 op
27 83f0f95a 2022-09-29 op #if HAVE_PR_SET_NAME
28 83f0f95a 2022-09-29 op
29 83f0f95a 2022-09-29 op #include <sys/prctl.h>
30 83f0f95a 2022-09-29 op
31 83f0f95a 2022-09-29 op void
32 83f0f95a 2022-09-29 op setproctitle(const char *fmt, ...)
33 83f0f95a 2022-09-29 op {
34 83f0f95a 2022-09-29 op char title[16], name[16], *cp;
35 83f0f95a 2022-09-29 op va_list ap;
36 83f0f95a 2022-09-29 op int used;
37 83f0f95a 2022-09-29 op
38 83f0f95a 2022-09-29 op va_start(ap, fmt);
39 83f0f95a 2022-09-29 op vsnprintf(title, sizeof title, fmt, ap);
40 83f0f95a 2022-09-29 op va_end(ap);
41 83f0f95a 2022-09-29 op
42 83f0f95a 2022-09-29 op used = snprintf(name, sizeof name, "%s: %s", getprogname(), title);
43 83f0f95a 2022-09-29 op if (used >= (int)sizeof name) {
44 83f0f95a 2022-09-29 op cp = strrchr(name, ' ');
45 83f0f95a 2022-09-29 op if (cp != NULL)
46 83f0f95a 2022-09-29 op *cp = '\0';
47 83f0f95a 2022-09-29 op }
48 83f0f95a 2022-09-29 op prctl(PR_SET_NAME, name);
49 83f0f95a 2022-09-29 op }
50 83f0f95a 2022-09-29 op #else
51 83f0f95a 2022-09-29 op void
52 83f0f95a 2022-09-29 op setproctitle(const char *fmt, ...)
53 83f0f95a 2022-09-29 op {
54 83f0f95a 2022-09-29 op (void)fmt;
55 83f0f95a 2022-09-29 op }
56 83f0f95a 2022-09-29 op #endif