summaryrefslogtreecommitdiff
path: root/usr/src/cmd/getent/dogetprofattr.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/cmd/getent/dogetprofattr.c')
-rw-r--r--usr/src/cmd/getent/dogetprofattr.c87
1 files changed, 87 insertions, 0 deletions
diff --git a/usr/src/cmd/getent/dogetprofattr.c b/usr/src/cmd/getent/dogetprofattr.c
new file mode 100644
index 0000000000..20bfbf7fe0
--- /dev/null
+++ b/usr/src/cmd/getent/dogetprofattr.c
@@ -0,0 +1,87 @@
+/*
+ * CDDL HEADER START
+ *
+ * The contents of this file are subject to the terms of the
+ * Common Development and Distribution License, Version 1.0 only
+ * (the "License"). You may not use this file except in compliance
+ * with the License.
+ *
+ * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
+ * or http://www.opensolaris.org/os/licensing.
+ * See the License for the specific language governing permissions
+ * and limitations under the License.
+ *
+ * When distributing Covered Code, include this CDDL HEADER in each
+ * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
+ * If applicable, add the following below this CDDL HEADER, with the
+ * fields enclosed by brackets "[]" replaced with your own identifying
+ * information: Portions Copyright [yyyy] [name of copyright owner]
+ *
+ * CDDL HEADER END
+ */
+/*
+ * Copyright (c) 2018 Peter Tribble.
+ * Copyright 2004 Sun Microsystems, Inc. All rights reserved.
+ * Use is subject to license terms.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <prof_attr.h>
+#include "getent.h"
+
+static int
+putprofattr(const profattr_t *prof, FILE *fp)
+{
+ int i;
+ kva_t *attrs;
+ kv_t *data;
+
+ if (prof == NULL)
+ return (1);
+
+ if (fprintf(fp, "%s:%s:%s:%s:",
+ prof->name != NULL ? prof->name : "",
+ prof->res1 != NULL ? prof->res1 : "",
+ prof->res2 != NULL ? prof->res2 : "",
+ prof->desc != NULL ? prof->desc : "") == EOF)
+ return (1);
+ attrs = prof->attr;
+ if (attrs != NULL) {
+ data = attrs->data;
+ for (i = 0; i < attrs->length; i++) {
+ if (fprintf(fp, "%s=%s%s",
+ data[i].key != NULL ? data[i].key : "",
+ data[i].value != NULL ? data[i].value : "",
+ i < (attrs->length)-1 ? ";" : "") == EOF)
+ return (1);
+ }
+ }
+ if (putc('\n', fp) == EOF)
+ return (1);
+ return (0);
+}
+
+int
+dogetprofattr(const char **list)
+{
+ profattr_t *pprof;
+ int rc = EXC_SUCCESS;
+
+ if (list == NULL || *list == NULL) {
+ setprofattr();
+ while ((pprof = getprofattr()) != NULL)
+ (void) putprofattr(pprof, stdout);
+ endprofattr();
+ } else {
+ for (; *list != NULL; list++) {
+ pprof = getprofnam(*list);
+ if (pprof == NULL)
+ rc = EXC_NAME_NOT_FOUND;
+ else
+ (void) putprofattr(pprof, stdout);
+ }
+ }
+
+ return (rc);
+}