From 31ab0f28b5855eb04295e4f4af574613a0a3bfef Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 12 Mar 1998 02:17:56 +0000 Subject: these have been replaced by swat (This used to be commit f9ce87f8658920bd73ed9968723bd5c65a07b8b2) --- source3/wsmbconf.c | 238 --------------------------------------------------- source3/wsmbstatus.c | 93 -------------------- 2 files changed, 331 deletions(-) delete mode 100644 source3/wsmbconf.c delete mode 100644 source3/wsmbstatus.c diff --git a/source3/wsmbconf.c b/source3/wsmbconf.c deleted file mode 100644 index 566b899c8f..0000000000 --- a/source3/wsmbconf.c +++ /dev/null @@ -1,238 +0,0 @@ -/* - Unix SMB/Netbios implementation. - Version 1.9. - html smb.conf editing - prototype only - Copyright (C) Andrew Tridgell 1997-1998 - - 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. -*/ - -#ifdef SYSLOG -#undef SYSLOG -#endif - -#include "includes.h" -#include "smb.h" - -#define SDEFAULTS "Service defaults" -#define SGLOBAL "Global Parameters" -#define GLOBALS_SNUM -2 -#define DEFAULTS_SNUM -1 - -static pstring servicesf = CONFIGFILE; - - -/* start the page with standard stuff */ -static void print_header(void) -{ - printf("Content-type: text/html\r\n\r\n"); - printf("\n"); - printf("\n\nsmb.conf\n\n\n\n"); -} - - -/* finish off the page */ -static void print_footer(void) -{ - printf("\n\n\n"); -} - -/* display a servce, ready for editing */ -static void show_service(int snum, int allparameters) -{ - int i = 0; - pstring label, value; - char *sname; - - if (snum == GLOBALS_SNUM) - sname = SGLOBAL; - else if (snum == DEFAULTS_SNUM) - sname = SDEFAULTS; - else sname = lp_servicename(snum); - - printf("\n

\n\n\n\n
\n\n"); - printf("
\n"); - printf("

%s

\n", sname); - printf("\n", sname); - printf("\n"); - printf("\n"); - printf("\n"); - printf("\n"); - printf("

\n"); - printf("\n"); - printf("
\n
\n"); - - printf("

\n"); -} - - -/* loop over all services, displaying them one after the other */ -static void show_services(void) -{ - int i; - int n; - int allparameters = cgi_boolean("allparameters", 0); - - printf("

\n"); - printf("

Show all parameters?\n"); - printf("\n", - allparameters?"CHECKED":""); - - printf("\n"); - - printf("

\n"); - - n = lp_numservices(); - - show_service(GLOBALS_SNUM, allparameters); - show_service(DEFAULTS_SNUM, allparameters); - - for (i=0;iCan't load %s - using defaults

\n", - servicesf); - } - return 1; -} - - -static int save_reload(void) -{ - FILE *f; - - f = fopen(servicesf,"w"); - if (!f) { - printf("failed to open %s for writing\n", servicesf); - return 0; - } - - fprintf(f, "# Samba config file created using wsmbconf\n"); - - lp_dump(f); - - fclose(f); - - lp_killunused(NULL); - - if (!lp_load(servicesf,False)) { - printf("Can't reload %s\n", servicesf); - return 0; - } - - return 1; -} - -static void process_requests(void) -{ - char *req = cgi_variable("request"); - char *newvalue = cgi_variable("newvalue"); - char *parameter = cgi_variable("parameter"); - char *service = cgi_variable("service"); - int snum=0; - - if (!req) return; - - if (service) { - /* work out what service it is */ - if (strcmp(service,SGLOBAL) == 0) { - snum = GLOBALS_SNUM; - } else if (strcmp(service,SDEFAULTS) == 0) { - snum = DEFAULTS_SNUM; - } else { - snum = lp_servicenumber(service); - if (snum < 0) return; - } - } - - if (!newvalue) - newvalue = ""; - - if (strcmp(req,"Change") == 0) { - /* change the value of a parameter */ - if (!parameter || !service) return; - - lp_do_parameter(snum, parameter, newvalue); - } else if (strcmp(req,"Rename") == 0) { - /* rename a service */ - if (!newvalue || !service) return; - - lp_rename_service(snum, newvalue); - } else if (strcmp(req,"Remove") == 0) { - /* remove a service */ - if (!service) return; - - lp_remove_service(snum); - } else if (strcmp(req,"Copy") == 0) { - /* copy a service */ - if (!service || !newvalue) return; - - lp_copy_service(snum, newvalue); - } - - save_reload(); -} - - -int main(int argc, char *argv[]) -{ - extern char *optarg; - extern int optind; - extern FILE *dbf; - int opt; - - dbf = fopen("/dev/null", "w"); - - if (!dbf) dbf = stderr; - - cgi_setup(WEB_ROOT); - - - while ((opt = getopt(argc, argv,"s:")) != EOF) { - switch (opt) { - case 's': - pstrcpy(servicesf,optarg); - break; - } - } - - - print_header(); - - charset_initialise(); - - if (load_config()) { - cgi_load_variables(NULL); - process_requests(); - show_services(); - } - print_footer(); - return 0; -} diff --git a/source3/wsmbstatus.c b/source3/wsmbstatus.c deleted file mode 100644 index 60c35357b2..0000000000 --- a/source3/wsmbstatus.c +++ /dev/null @@ -1,93 +0,0 @@ -/* - Unix SMB/Netbios implementation. - Version 1.9. - html status reporting - Copyright (C) Andrew Tridgell 1997-1998 - - 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. -*/ - -#ifdef SYSLOG -#undef SYSLOG -#endif - -#include "includes.h" - -static void print_header(void) -{ - printf("Content-type: text/html\n\n"); - printf("\n\nsmbstatus\n\n\n\n"); -} - -static void print_footer(void) -{ - printf("\n\n\n"); -} - -static void show_connections(void) -{ - static pstring servicesf = CONFIGFILE; - pstring fname; - FILE *f; - struct connect_record crec; - - if(!get_myname(myhostname,NULL)) - { - printf("Failed to get my hostname.\n"); - return; - } - - if (!lp_load(servicesf,False)) { - printf("Can't load %s - run testparm to debug it\n", servicesf); - return; - } - - strcpy(fname,lp_lockdir()); - standard_sub_basic(fname); - trim_string(fname,"","/"); - strcat(fname,"/STATUS..LCK"); - - f = fopen(fname,"r"); - if (!f) { - printf("Couldn't open status file %s\n",fname); - if (!lp_status(-1)) - printf("You need to have status=yes in your smb config file\n"); - return; - } - - - printf("\nSamba version %s\n

",VERSION); - - while (!feof(f)) { - if (fread(&crec,sizeof(crec),1,f) != 1) - break; - if (crec.magic == 0x280267 && process_exists(crec.pid)) { - printf("%-10.10s %-8s %-8s %5d %-8s (%s) %s
", - crec.name,uidtoname(crec.uid), - gidtoname(crec.gid),crec.pid, - crec.machine,crec.addr, - asctime(LocalTime(&crec.start))); - } - } - fclose(f); -} - -int main(int argc, char *argv[]) -{ - print_header(); - show_connections(); - print_footer(); - return 0; -} -- cgit