/*
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 GLOBALS_SNUM -2
#define DEFAULTS_SNUM -1
static pstring servicesf = CONFIGFILE;
/* start the page with standard stuff */
static void print_header(void)
{
printf("Expires: %s\r\n", http_timestring(time(NULL)));
printf("Content-type: text/html\r\n\r\n");
printf("\n");
printf("\n
\nSamba Web Administration Tool\n\n\n\n");
}
/* finish off the page */
static void print_footer(void)
{
printf("\n\n\n");
}
/* include a lump of html in a page */
static void include_html(char *fname)
{
FILE *f = fopen(fname,"r");
char buf[1024];
int ret;
if (!f) {
printf("ERROR: Can't open %s\n", fname);
return;
}
while (!feof(f)) {
ret = fread(buf, 1, sizeof(buf), f);
if (ret <= 0) break;
fwrite(buf, 1, ret, stdout);
}
fclose(f);
}
/* display one editable parameter */
static void show_parameter(int snum, struct parm_struct *parm)
{
int i;
void *ptr = parm->ptr;
if (parm->class == P_LOCAL) {
ptr = lp_local_ptr(snum, ptr);
}
printf("
",
parm->label, parm->label);
switch (parm->type) {
case P_CHAR:
printf("",
parm->label, *(char *)ptr);
break;
case P_STRING:
case P_USTRING:
printf("",
parm->label, *(char **)ptr);
break;
case P_GSTRING:
case P_UGSTRING:
printf("",
parm->label, (char *)ptr);
break;
case P_BOOL:
printf("yes ", parm->label, (*(BOOL *)ptr)?"CHECKED":"");
printf("no", parm->label, (*(BOOL *)ptr)?"":"CHECKED");
break;
case P_BOOLREV:
printf("yes ", parm->label, (*(BOOL *)ptr)?"":"CHECKED");
printf("no", parm->label, (*(BOOL *)ptr)?"CHECKED":"");
break;
case P_INTEGER:
printf("", parm->label, *(int *)ptr);
break;
case P_OCTAL:
printf("", parm->label, *(int *)ptr);
break;
case P_ENUM:
for (i=0;parm->enum_list[i].name;i++)
printf("%s ",
parm->label, parm->enum_list[i].name,
(*(int *)ptr)==parm->enum_list[i].value?"CHECKED":"",
parm->enum_list[i].name);
break;
}
printf("
\n");
}
/* display a set of parameters for a service */
static void show_parameters(int snum, int allparameters, int advanced, int printers)
{
int i = 0;
struct parm_struct *parm;
printf("
\n");
while ((parm = lp_next_parameter(snum, &i, allparameters))) {
if (parm->flags & FLAG_HIDE) continue;
if (!advanced) {
if (!printers && !(parm->flags & FLAG_BASIC)) continue;
if (printers && !(parm->flags & FLAG_PRINT)) continue;
}
show_parameter(snum, parm);
}
printf("
\n");
}
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 SWAT\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;
}
/* commit a set of parameters for a service */
static void commit_parameters(int snum)
{
int i = 0;
struct parm_struct *parm;
pstring label;
char *v;
while ((parm = lp_next_parameter(snum, &i, 1))) {
sprintf(label, "parm_%s", parm->label);
if ((v = cgi_variable(label))) {
lp_do_parameter(snum, parm->label, v);
}
}
save_reload();
}
/* load the smb.conf file into loadparm. */
static void load_config(void)
{
if (!lp_load(servicesf,False)) {
printf("Can't load %s - using defaults
\n",
servicesf);
}
}
/* spit out the html for a link with an image */
static void image_link(char *name,char *hlink, char *src, int width, int height)
{
printf("\n", hlink, width, height, src, name);
}
/* display the main navigation controls at the top of each page along
with a title */
static void show_main_buttons(void)
{
printf("