diff options
| author | SkyperTHC | 2026-03-03 06:28:55 +0000 |
|---|---|---|
| committer | SkyperTHC | 2026-03-03 06:28:55 +0000 |
| commit | 5d3573ef7a109ee70416fe94db098fe6a769a798 (patch) | |
| tree | dc2d5b294c9db8ab2db7433511f94e1c4bb8b698 /other/ssharp/openbsd-compat/setproctitle.c | |
| parent | c6c59dc73cc4586357f93ab38ecf459e98675cc5 (diff) | |
packetstorm sync
Diffstat (limited to 'other/ssharp/openbsd-compat/setproctitle.c')
| -rw-r--r-- | other/ssharp/openbsd-compat/setproctitle.c | 102 |
1 files changed, 102 insertions, 0 deletions
diff --git a/other/ssharp/openbsd-compat/setproctitle.c b/other/ssharp/openbsd-compat/setproctitle.c new file mode 100644 index 0000000..38eca9a --- /dev/null +++ b/other/ssharp/openbsd-compat/setproctitle.c | |||
| @@ -0,0 +1,102 @@ | |||
| 1 | /* | ||
| 2 | * Modified for OpenSSH by Kevin Steves | ||
| 3 | * October 2000 | ||
| 4 | */ | ||
| 5 | |||
| 6 | /* | ||
| 7 | * Copyright (c) 1994, 1995 Christopher G. Demetriou | ||
| 8 | * All rights reserved. | ||
| 9 | * | ||
| 10 | * Redistribution and use in source and binary forms, with or without | ||
| 11 | * modification, are permitted provided that the following conditions | ||
| 12 | * are met: | ||
| 13 | * 1. Redistributions of source code must retain the above copyright | ||
| 14 | * notice, this list of conditions and the following disclaimer. | ||
| 15 | * 2. Redistributions in binary form must reproduce the above copyright | ||
| 16 | * notice, this list of conditions and the following disclaimer in the | ||
| 17 | * documentation and/or other materials provided with the distribution. | ||
| 18 | * 3. All advertising materials mentioning features or use of this software | ||
| 19 | * must display the following acknowledgement: | ||
| 20 | * This product includes software developed by Christopher G. Demetriou | ||
| 21 | * for the NetBSD Project. | ||
| 22 | * 4. The name of the author may not be used to endorse or promote products | ||
| 23 | * derived from this software without specific prior written permission | ||
| 24 | * | ||
| 25 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR | ||
| 26 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES | ||
| 27 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. | ||
| 28 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
| 29 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
| 30 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
| 31 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
| 32 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
| 33 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
| 34 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
| 35 | */ | ||
| 36 | |||
| 37 | #if defined(LIBC_SCCS) && !defined(lint) | ||
| 38 | static char rcsid[] = "$OpenBSD: setproctitle.c,v 1.7 1999/02/25 22:10:12 art Exp $"; | ||
| 39 | #endif /* LIBC_SCCS and not lint */ | ||
| 40 | |||
| 41 | #include "includes.h" | ||
| 42 | |||
| 43 | #ifndef HAVE_SETPROCTITLE | ||
| 44 | |||
| 45 | #define SPT_NONE 0 | ||
| 46 | #define SPT_PSTAT 1 | ||
| 47 | |||
| 48 | #ifndef SPT_TYPE | ||
| 49 | #define SPT_TYPE SPT_NONE | ||
| 50 | #endif | ||
| 51 | |||
| 52 | #if SPT_TYPE == SPT_PSTAT | ||
| 53 | #include <sys/param.h> | ||
| 54 | #include <sys/pstat.h> | ||
| 55 | #endif /* SPT_TYPE == SPT_PSTAT */ | ||
| 56 | |||
| 57 | #define MAX_PROCTITLE 2048 | ||
| 58 | |||
| 59 | extern char *__progname; | ||
| 60 | |||
| 61 | /* | ||
| 62 | * Set Process Title (SPT) defines. Modeled after sendmail's | ||
| 63 | * SPT type definition strategy. | ||
| 64 | * | ||
| 65 | * SPT_TYPE: | ||
| 66 | * | ||
| 67 | * SPT_NONE: Don't set the process title. Default. | ||
| 68 | * SPT_PSTAT: Use pstat(PSTAT_SETCMD). HP-UX specific. | ||
| 69 | */ | ||
| 70 | |||
| 71 | void | ||
| 72 | setproctitle(const char *fmt, ...) | ||
| 73 | { | ||
| 74 | #if SPT_TYPE != SPT_NONE | ||
| 75 | va_list ap; | ||
| 76 | |||
| 77 | char buf[MAX_PROCTITLE]; | ||
| 78 | size_t used; | ||
| 79 | |||
| 80 | #if SPT_TYPE == SPT_PSTAT | ||
| 81 | union pstun pst; | ||
| 82 | #endif /* SPT_TYPE == SPT_PSTAT */ | ||
| 83 | |||
| 84 | va_start(ap, fmt); | ||
| 85 | if (fmt != NULL) { | ||
| 86 | used = snprintf(buf, MAX_PROCTITLE, "%s: ", __progname); | ||
| 87 | if (used >= MAX_PROCTITLE) | ||
| 88 | used = MAX_PROCTITLE - 1; | ||
| 89 | (void)vsnprintf(buf + used, MAX_PROCTITLE - used, fmt, ap); | ||
| 90 | } else | ||
| 91 | (void)snprintf(buf, MAX_PROCTITLE, "%s", __progname); | ||
| 92 | va_end(ap); | ||
| 93 | used = strlen(buf); | ||
| 94 | |||
| 95 | #if SPT_TYPE == SPT_PSTAT | ||
| 96 | pst.pst_command = buf; | ||
| 97 | pstat(PSTAT_SETCMD, pst, used, 0, 0); | ||
| 98 | #endif /* SPT_TYPE == SPT_PSTAT */ | ||
| 99 | |||
| 100 | #endif /* SPT_TYPE != SPT_NONE */ | ||
| 101 | } | ||
| 102 | #endif /* HAVE_SETPROCTITLE */ | ||
