diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2014-10-26 12:33:50 +0400 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2014-10-26 12:33:50 +0400 |
commit | 47e6e7c84f008a53061e661f31ae96629bc694ef (patch) | |
tree | 648a07f3b5b9d67ce19b0fd72e8caa1175c98f1a /src/autofsd-probe | |
download | pcp-debian/3.9.10.tar.gz |
Debian 3.9.10debian/3.9.10debian
Diffstat (limited to 'src/autofsd-probe')
-rw-r--r-- | src/autofsd-probe/GNUmakefile | 38 | ||||
-rw-r--r-- | src/autofsd-probe/autofsd-probe.c | 89 |
2 files changed, 127 insertions, 0 deletions
diff --git a/src/autofsd-probe/GNUmakefile b/src/autofsd-probe/GNUmakefile new file mode 100644 index 0000000..38ba708 --- /dev/null +++ b/src/autofsd-probe/GNUmakefile @@ -0,0 +1,38 @@ +# +# Copyright (c) 2000,2004 Silicon Graphics, Inc. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation; either version 2 of the License, or (at your +# option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# + +TOPDIR = ../.. +include $(TOPDIR)/src/include/builddefs + +CFILES = autofsd-probe.c +CMDTARGET = autofsd-probe +LLDLIBS = $(PCPLIB) + +default: build-me + +include $(TOPDIR)/src/include/buildrules + +ifneq "$(TARGET_OS)" "mingw" +build-me: $(CMDTARGET) + +install: build-me + $(INSTALL) -m 755 $(CMDTARGET) $(PCP_BINADM_DIR)/$(CMDTARGET) +else +build-me: +install: +endif + +default_pcp : default + +install_pcp : install diff --git a/src/autofsd-probe/autofsd-probe.c b/src/autofsd-probe/autofsd-probe.c new file mode 100644 index 0000000..412beeb --- /dev/null +++ b/src/autofsd-probe/autofsd-probe.c @@ -0,0 +1,89 @@ +/* + * Copyright (c) 1998,2004 Silicon Graphics, Inc. All Rights Reserved. + * + * This program is free software; you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the + * Free Software Foundation; either version 2 of the License, or (at your + * option) any later version. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY + * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License + * for more details. + * + * You should have received a copy of the GNU General Public License along + * with this program; if not, write to the Free Software Foundation, Inc., + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + */ + +#include "pmapi.h" +#include "impl.h" +#include <rpc/rpc.h> + +#define AUTOFSD_PROGRAM 100099UL +#define AUTOFSD_VERSION 1UL + +/* + * probe IRIX autofsd(1M) + */ +int +main(int argc, char **argv) +{ + struct timeval tv = { 10, 0 }; + CLIENT *clnt; + enum clnt_stat stat; + int c; + char *p; + char *host = "local:"; + int errflag = 0; + + __pmSetProgname(argv[0]); + + while ((c = getopt(argc, argv, "h:t:?")) != EOF) { + switch (c) { + + case 'h': /* contact autofsd on this hostname */ + host = optarg; + break; + + case 't': /* change timeout interval */ + if (pmParseInterval(optarg, &tv, &p) < 0) { + fprintf(stderr, "%s: illegal -t argument\n", pmProgname); + fputs(p, stderr); + free(p); + errflag++; + } + break; + + case '?': + default: + fprintf(stderr, "Usage: %s [-h host] [-t timeout]\n", pmProgname); + errflag++; + break; + } + } + + if (errflag) + exit(4); + + if ((clnt = clnt_create(host, AUTOFSD_PROGRAM, AUTOFSD_VERSION, "udp")) == NULL) { + clnt_pcreateerror("clnt_create"); + exit(2); + } + + /* + * take control of the timeout algorithm + */ + clnt_control(clnt, CLSET_TIMEOUT, (char *)&tv); + clnt_control(clnt, CLSET_RETRY_TIMEOUT, (char *)&tv); + + stat = clnt_call(clnt, NULLPROC, (xdrproc_t)xdr_void, (char *)0, + (xdrproc_t)xdr_void, (char *)0, tv); + + if (stat != RPC_SUCCESS) { + clnt_perror(clnt, "clnt_call"); + exit(1); + } + + exit(0); +} |