Blame


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