summaryrefslogtreecommitdiff
path: root/source4/scripting/ejs
diff options
context:
space:
mode:
authorRafal Szczesniak <mimir@samba.org>2005-10-24 21:10:53 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:45:13 -0500
commitab6ae6838eaad3f7e31cb7dd3ce8ac4a75fd2c84 (patch)
treeff21018d8cf04ac74570e50a054f72279c7b3f65 /source4/scripting/ejs
parent3aae4d0224815bac3d2af3f528ef732bb4035437 (diff)
downloadsamba-ab6ae6838eaad3f7e31cb7dd3ce8ac4a75fd2c84.tar.gz
samba-ab6ae6838eaad3f7e31cb7dd3ce8ac4a75fd2c84.tar.bz2
samba-ab6ae6838eaad3f7e31cb7dd3ce8ac4a75fd2c84.zip
r11281: Initial ejs interface for libnet functions.
rafal (This used to be commit f9c436bbdf0f071247da025f6984f9ee1c48dca8)
Diffstat (limited to 'source4/scripting/ejs')
-rw-r--r--source4/scripting/ejs/config.mk3
-rw-r--r--source4/scripting/ejs/ejsnet.c119
-rw-r--r--source4/scripting/ejs/ejsnet.h27
-rw-r--r--source4/scripting/ejs/smbcalls.c1
4 files changed, 149 insertions, 1 deletions
diff --git a/source4/scripting/ejs/config.mk b/source4/scripting/ejs/config.mk
index a53c378e9d..bc24671921 100644
--- a/source4/scripting/ejs/config.mk
+++ b/source4/scripting/ejs/config.mk
@@ -28,8 +28,9 @@ OBJ_FILES = \
smbcalls_creds.o \
smbcalls_samba3.o \
smbcalls_param.o \
+ ejsnet.o \
mprutil.o
-REQUIRED_SUBSYSTEMS = AUTH EJS LIBBASIC EJSRPC MESSAGING LIBSAMBA3
+REQUIRED_SUBSYSTEMS = AUTH EJS LIBBASIC EJSRPC MESSAGING LIBSAMBA3 LIBNET
# End SUBSYSTEM SMBCALLS
#######################
diff --git a/source4/scripting/ejs/ejsnet.c b/source4/scripting/ejs/ejsnet.c
new file mode 100644
index 0000000000..fea1608170
--- /dev/null
+++ b/source4/scripting/ejs/ejsnet.c
@@ -0,0 +1,119 @@
+/*
+ Unix SMB/CIFS implementation.
+
+ provide interfaces to libnet calls from ejs scripts
+
+ Copyright (C) Rafal Szczesniak 2005
+
+ 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+
+#include "includes.h"
+#include "lib/appweb/ejs/ejs.h"
+#include "scripting/ejs/smbcalls.h"
+#include "scripting/ejs/ejsnet.h"
+#include "libnet/libnet.h"
+
+
+static int ejs_net_context(MprVarHandle eid, int argc, struct MprVar **argv)
+{
+ struct cli_credentials *creds;
+ struct libnet_context *ctx;
+ struct MprVar *obj;
+
+ ctx = libnet_context_init(NULL);
+ creds = talloc(ctx, struct cli_credentials);
+ ctx->cred = creds;
+
+ if (argc == 0) {
+ cli_credentials_set_anonymous(creds);
+
+ } else if (argc == 2 || argc == 4 ) {
+
+ if (!mprVarIsString(argv[0]->type)) {
+ ejsSetErrorMsg(eid, "argument 1 must be a string");
+ goto done;
+ }
+ cli_credentials_set_username(creds, argv[0]->string, CRED_SPECIFIED);
+
+ if (!mprVarIsString(argv[1]->type)) {
+ ejsSetErrorMsg(eid, "argument 2 must be a string");
+ goto done;
+ }
+ cli_credentials_set_password(creds, argv[1]->string, CRED_SPECIFIED);
+
+ } else {
+ ejsSetErrorMsg(eid, "invalid number of arguments");
+ goto done;
+ }
+
+
+ if (argc == 4) {
+
+ if (!mprVarIsString(argv[2]->type)) {
+ ejsSetErrorMsg(eid, "argument 3 must be a string");
+ goto done;
+ }
+ cli_credentials_set_domain(creds, argv[2]->string, CRED_SPECIFIED);
+
+ if (!mprVarIsString(argv[3]->type)) {
+ ejsSetErrorMsg(eid, "argument 4 must be a string");
+ goto done;
+ }
+ cli_credentials_set_realm(creds, argv[3]->string, CRED_SPECIFIED);
+ }
+
+ obj = mprInitObject(eid, "NetCtx", argc, argv);
+
+ mprSetStringCFunction(obj, "CreateUser", ejs_net_createuser);
+ mprSetPtrChild(obj, "ctx", ctx);
+
+ return 0;
+done:
+ talloc_free(ctx);
+ return -1;
+}
+
+
+static int ejs_net_createuser(MprVarHandle eid, int argc, char **argv)
+{
+ NTSTATUS status = NT_STATUS_UNSUCCESSFUL;
+ TALLOC_CTX *mem_ctx;
+ struct libnet_context *ctx;
+ struct libnet_CreateUser req;
+
+ if (argc != 1) {
+ ejsSetErrorMsg(eid, "argument 1 must be a string");
+ goto done;
+ }
+
+ ctx = mprGetThisPtr(eid, "ctx");
+ mem_ctx = talloc_init(NULL);
+
+ req.in.domain_name = cli_credentials_get_domain(ctx->cred);
+ req.in.user_name = argv[0];
+
+ status = libnet_CreateUser(ctx, mem_ctx, &req);
+
+ talloc_free(mem_ctx);
+done:
+ return NT_STATUS_IS_OK(status) ? 0 : -1;
+}
+
+
+void ejsnet_setup(void)
+{
+ ejsDefineCFunction(-1, "NetContext", ejs_net_context, NULL, MPR_VAR_SCRIPT_HANDLE);
+}
diff --git a/source4/scripting/ejs/ejsnet.h b/source4/scripting/ejs/ejsnet.h
new file mode 100644
index 0000000000..4ea64df36b
--- /dev/null
+++ b/source4/scripting/ejs/ejsnet.h
@@ -0,0 +1,27 @@
+/*
+ Unix SMB/CIFS implementation.
+
+ provide interfaces to libnet calls from ejs scripts
+
+ Copyright (C) Rafal Szczesniak 2005
+
+ 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., 675 Mass Ave, Cambridge, MA 02139, USA.
+*/
+
+#include "lib/appweb/ejs/ejs.h"
+
+
+void ejsnet_setup(void);
+static int ejs_net_createuser(MprVarHandle, int, char**);
diff --git a/source4/scripting/ejs/smbcalls.c b/source4/scripting/ejs/smbcalls.c
index d0ce1366a5..3e5035b272 100644
--- a/source4/scripting/ejs/smbcalls.c
+++ b/source4/scripting/ejs/smbcalls.c
@@ -131,6 +131,7 @@ void smb_setup_ejs_functions(void)
smb_setup_ejs_samba3();
smb_setup_ejs_param();
smb_setup_ejs_datablob();
+ ejsnet_setup();
ejsDefineCFunction(-1, "typeof", ejs_typeof, NULL, MPR_VAR_SCRIPT_HANDLE);
ejsDefineStringCFunction(-1, "libinclude", ejs_libinclude, NULL, MPR_VAR_SCRIPT_HANDLE);