def update_auth_method(request): return_dict = {} try: d, err = cifs.get_auth_settings() if err: raise Exception(err) return_dict["samba_global_dict"] = d if request.method == "GET": return django.shortcuts.render_to_response('update_cifs_auth_method.html', return_dict, context_instance=django.template.context.RequestContext(request)) else: # Save request if "auth_method" not in request.POST: return_dict["error"] = "Please select an authentication method" return django.shortcuts.render_to_response('update_cifs_auth_method.html', return_dict, context_instance=django.template.context.RequestContext(request)) security = request.POST["auth_method"] if 'security' in d and security == d["security"]: return_dict["error"] = "Selected authentication method is the same as before." return django.shortcuts.render_to_response('update_cifs_auth_method.html', return_dict, context_instance=django.template.context.RequestContext(request)) ret, err = cifs.update_auth_method(security) if err: raise Exception(err) ret, err = cifs.generate_smb_conf() if err: raise Exception(err) return django.http.HttpResponseRedirect('/storage_access/update_samba_server_settings') except Exception, e: return_dict['base_template'] = "storage_access_base.html" return_dict["page_title"] = 'Modify CIFS authentication method' return_dict['tab'] = 'auth_server_settings_tab' return_dict["error"] = 'Error modifying CIFS authentication method' return_dict["error_details"] = str(e) return django.shortcuts.render_to_response("logged_in_error.html", return_dict, context_instance=django.template.context.RequestContext(request))
def delete_cifs_share(request): return_dict = {} try: if request.method == "GET": # Return the conf page share_id = request.GET["share_id"] name = request.GET["name"] return_dict["share_id"] = share_id return_dict["name"] = name return django.shortcuts.render_to_response("delete_cifs_share_conf.html", return_dict, context_instance=django.template.context.RequestContext(request)) else: share_id = request.POST["share_id"] name = request.POST["name"] #logger.debug("Delete share request for name %s"%name) ret, err = cifs.delete_share(share_id) if err: raise Exception(err) ret, err = cifs.generate_smb_conf() if err: raise Exception(err) audit_str = "Deleted CIFS share %s" % name audit.audit("delete_cifs_share", audit_str, request) return django.http.HttpResponseRedirect('/storage_access/view_cifs_shares?ack=deleted') except Exception, e: return_dict['base_template'] = "storage_access_base.html" return_dict["page_title"] = 'Delete a CIFS share' return_dict['tab'] = 'view_cifs_shares_tab' return_dict["error"] = 'Error deleting a CIFS share' return_dict["error_details"] = str(e) return django.shortcuts.render_to_response("logged_in_error.html", return_dict, context_instance=django.template.context.RequestContext(request))
def update_samba_server_settings(request): return_dict = {} try: if request.method == "GET": d, err = cifs.get_auth_settings() if err: raise Exception(err) ini = {} if d: for k in d.keys(): if d[k]: ini[k] = d[k] else: ini['security'] = 'users' if d and d["security"] == "ads": form = samba_shares_forms.AuthADSettingsForm(initial=ini) else: form = samba_shares_forms.AuthUsersSettingsForm(initial=ini) print 'c' return_dict["form"] = form return django.shortcuts.render_to_response('update_samba_server_settings.html', return_dict, context_instance=django.template.context.RequestContext(request)) else: if "security" not in request.POST: raise Exception( "Invalid security specification. Please try again using the menus") if request.POST["security"] == "ads": form = samba_shares_forms.AuthADSettingsForm(request.POST) elif request.POST["security"] == "users": form = samba_shares_forms.AuthUsersSettingsForm(request.POST) else: raise Exception( "Invalid security specification. Please try again using the menus") return_dict["form"] = form return_dict["ack"] = "edit" if form.is_valid(): cd = form.cleaned_data # print "Calling auth save settings" ret, err = cifs.update_auth_settings(cd) print "save settings done" if err: raise Exception(err) if cd["security"] == "ads": ret, err = cifs.generate_krb5_conf() if err: raise Exception(err) ret, err = cifs.generate_smb_conf() if err: raise Exception(err) if cd["security"] == "ads": rc, err = cifs.kinit( cd["username"], cd["password"], cd["realm"]) if err: if "Password incorrect" in err: raise Exception("Invalid Credentials, Please try again") elif "not found" in err: raise Exception("Could not find an Active Directory user with the username: '******'! " % cd["username"]) elif cd["password"] in err: raise Exception(err.split('echo')[0]) else: raise Exception(err) rc, err = cifs.net_ads_join( cd["username"], cd["password"], cd["password_server"]) if err: if cd["password"] in err: raise Exception(err.split('net')[0]) else: raise Exception(err) ret, err = cifs.reload_configuration(action='restart') if err: raise Exception(err) else: return django.shortcuts.render_to_response('update_samba_server_settings.html', return_dict, context_instance=django.template.context.RequestContext(request)) audit_str = "Modified share authentication settings" audit.audit("modify_samba_settings", audit_str, request) return django.http.HttpResponseRedirect('/storage_access/view_samba_server_settings?ack=saved') # return django.shortcuts.render_to_response('logged_in_error.html', # return_dict, # context_instance=django.template.context.RequestContext(request)) except Exception, e: return_dict['base_template'] = "storage_access_base.html" return_dict["page_title"] = 'Modify CIFS authentication settings' return_dict['tab'] = 'auth_server_settings_tab' return_dict["error"] = 'Error modifying CIFS authentication settings' return_dict["error_details"] = str(e) return django.shortcuts.render_to_response("logged_in_error.html", return_dict, context_instance=django.template.context.RequestContext(request))
def create_cifs_share(request): return_dict = {} try: pools, err = zfs.get_pools() if err: raise Exception( 'No ZFS pools available. Please create a pool and dataset before creating shares.') ds_list = [] for pool in pools: for ds in pool["datasets"]: if ds['properties']['type']['value'] == 'filesystem': ds_list.append( (ds['properties']['mountpoint']['value'], ds["name"])) if not ds_list: raise Exception( 'No ZFS datasets available. Please create a dataset before creating shares.') dataset = path = None ret, err = django_utils.get_request_parameter_values( request, ['dataset', 'path']) if err: raise Exception(err) if 'dataset' not in ret: dataset = ds_list[0][0] elif 'dataset' in ret: dataset = ret['dataset'] if 'path' not in ret: path = dataset elif 'path' in ret: path = ret['path'] return_dict['path'] = path return_dict["dataset"] = ds_list initial = {} initial['path'] = path initial['dataset'] = dataset if request.method == "GET": # Return the form initial['guest_ok'] = True if 'name' in request.GET: initial['name'] = request.GET['name'] form = samba_shares_forms.CreateShareForm( dataset_list=ds_list, initial=initial) return_dict["form"] = form return django.shortcuts.render_to_response("create_cifs_share.html", return_dict, context_instance=django.template.context.RequestContext(request)) else: # Form submission so create form = samba_shares_forms.CreateShareForm( request.POST, initial=initial, dataset_list=ds_list) return_dict["form"] = form if form.is_valid(): cd = form.cleaned_data # print cd name = cd["name"] path = cd["path"] if not path: return_dict["path_error"] = "Please select a dataset." return django.shortcuts.render_to_response("create_cifs_share.html", return_dict, context_instance=django.template.context.RequestContext(request)) if 'new_folder' in cd and cd['new_folder']: try: path = '%s/%s' % (cd['path'], cd['new_folder']) # print path os.mkdir(path) audit_str = 'Created new directory "%s" in "%s"' % ( cd['new_folder'], cd['path']) audit.audit("create_dir", audit_str, request) except Exception, e: raise Exception('Error creating subfolder %s : %s' % ( cd['new_folder'], str(e))) owner_dict, err = config.get_default_file_dir_owner() if err: raise Exception(err) owner_uid, err = config.get_system_uid_gid( owner_dict['user'], 'user') if err: raise Exception(err) owner_gid, err = config.get_system_uid_gid( owner_dict['group'], 'group') if err: raise Exception(err) os.chown(path, owner_uid, owner_gid) if "comment" in cd: comment = cd["comment"] else: comment = None if "read_only" in cd: read_only = cd["read_only"] else: read_only = None if "browseable" in cd: browseable = cd["browseable"] else: browseable = None if 'hosts_allow_choice' in cd and cd['hosts_allow_choice'] == 'restricted': if 'hosts_allow' not in cd or not cd['hosts_allow']: raise Exception( 'Please enter a valid list of allowed hosts') hosts_allow = cd['hosts_allow'] else: hosts_allow = None # print hosts_allow if 'hosts_deny_choice' in cd and cd['hosts_deny_choice'] == 'restricted': if 'hosts_deny' not in cd or not cd['hosts_deny']: raise Exception( 'Please enter a valid list of denied hosts') hosts_deny = cd['hosts_deny'] else: hosts_deny = None # print hosts_deny guest_ok = True ret, err = cifs.create_share( name, comment, True, read_only, path, path, browseable, None, None, "integralstor_novol", hosts_allow=hosts_allow, hosts_deny=hosts_deny) if err: raise Exception(err) ret, err = cifs.generate_smb_conf() if err: raise Exception(err) audit_str = "Created Samba share %s" % name audit.audit("create_cifs_share", audit_str, request) return django.http.HttpResponseRedirect('/storage_access/view_cifs_shares?ack=created') else:
def update_cifs_share(request): return_dict = {} try: user_list, err = cifs.get_user_list() if err: raise Exception(err) group_list, err = cifs.get_group_list() if err: raise Exception(err) if request.method == "GET": # Shd be an edit request if "share_id" not in request.GET: raise Exception("Unknown share specified") share_id = request.GET["share_id"] share_dict, err = cifs.get_share_info("by_id", share_id) if err: raise Exception(err) # Set initial form values initial = {} initial["share_id"] = share_dict["share_id"] initial["name"] = share_dict["name"] initial["path"] = share_dict["path"] if share_dict["browseable"]: initial["browseable"] = True else: initial["browseable"] = False if share_dict["read_only"]: initial["read_only"] = True else: initial["read_only"] = False initial["comment"] = share_dict["comment"] # print share_dict initial["hosts_allow"] = share_dict["hosts_allow"] initial["hosts_deny"] = share_dict["hosts_deny"] if not share_dict['hosts_allow']: initial['hosts_allow_choice'] = 'all' else: initial['hosts_allow_choice'] = 'restricted' if not share_dict['hosts_deny']: initial['hosts_deny_choice'] = 'none' else: initial['hosts_deny_choice'] = 'restricted' # print initial form = samba_shares_forms.EditShareForm(initial=initial) return_dict["form"] = form return django.shortcuts.render_to_response('update_cifs_share.html', return_dict, context_instance=django.template.context.RequestContext(request)) else: # Shd be an save request form = samba_shares_forms.EditShareForm(request.POST) return_dict["form"] = form if form.is_valid(): cd = form.cleaned_data name = cd["name"] share_id = cd["share_id"] path = cd["path"] if "comment" in cd: comment = cd["comment"] else: comment = None if "read_only" in cd: read_only = cd["read_only"] else: read_only = False if "browseable" in cd: browseable = cd["browseable"] else: browseable = False if 'hosts_allow_choice' in cd and cd['hosts_allow_choice'] == 'restricted': if 'hosts_allow' not in cd or not cd['hosts_allow']: raise Exception( 'Please enter a valid list of allowed hosts') hosts_allow = cd['hosts_allow'] else: hosts_allow = None # print hosts_allow if 'hosts_deny_choice' in cd and cd['hosts_deny_choice'] == 'restricted': if 'hosts_deny' not in cd or not cd['hosts_deny']: raise Exception( 'Please enter a valid list of denied hosts') hosts_deny = cd['hosts_deny'] else: hosts_deny = None # print hosts_deny ret, err = cifs.update_share( share_id, name, comment, False, read_only, path, browseable, None, None, hosts_allow=hosts_allow, hosts_deny=hosts_deny) if err: raise Exception(err) ret, err = cifs.generate_smb_conf() if err: raise Exception(err) audit_str = "Modified share %s" % cd["name"] audit.audit("modify_cifs_share", audit_str, request) return django.http.HttpResponseRedirect('/storage_access/view_cifs_share?access_mode=by_id&index=%s&ack=saved' % cd["share_id"]) else: # Invalid form return django.shortcuts.render_to_response('update_cifs_share.html', return_dict, context_instance=django.template.context.RequestContext(request)) except Exception, e: return_dict['base_template'] = "storage_access_base.html" return_dict["page_title"] = 'Modify a CIFS share' return_dict['tab'] = 'view_cifs_shares_tab' return_dict["error"] = 'Error modifying CIFS share' return_dict["error_details"] = str(e) return django.shortcuts.render_to_response("logged_in_error.html", return_dict, context_instance=django.template.context.RequestContext(request))
def update_samba_server_settings(request): return_dict = {} try: if request.method == "GET": d, err = cifs.get_auth_settings() if err: raise Exception(err) ini = {} if d: for k in d.keys(): if d[k]: ini[k] = d[k] else: ini['security'] = 'users' if d and d["security"] == "ads": form = samba_shares_forms.AuthADSettingsForm(initial=ini) else: form = samba_shares_forms.AuthUsersSettingsForm(initial=ini) print 'c' return_dict["form"] = form return django.shortcuts.render_to_response('update_samba_server_settings.html', return_dict, context_instance=django.template.context.RequestContext(request)) else: if "security" not in request.POST: raise Exception( "Invalid security specification. Please try again using the menus") if request.POST["security"] == "ads": form = samba_shares_forms.AuthADSettingsForm(request.POST) elif request.POST["security"] == "users": form = samba_shares_forms.AuthUsersSettingsForm(request.POST) else: raise Exception( "Invalid security specification. Please try again using the menus") return_dict["form"] = form return_dict["ack"] = "edit" if form.is_valid(): cd = form.cleaned_data # print "Calling auth save settings" ret, err = cifs.update_auth_settings(cd) print "save settings done" if err: raise Exception(err) if cd["security"] == "ads": ret, err = cifs.generate_krb5_conf() if err: raise Exception(err) ret, err = cifs.generate_smb_conf() if err: raise Exception(err) if cd["security"] == "ads": rc, err = cifs.kinit( "administrator", cd["password"], cd["realm"]) if err: raise Exception(err) rc, err = cifs.net_ads_join( "administrator", cd["password"], cd["password_server"]) if err: raise Exception(err) ret, err = cifs.reload_configuration() if err: raise Exception(err) else: return django.shortcuts.render_to_response('update_samba_server_settings.html', return_dict, context_instance=django.template.context.RequestContext(request)) audit_str = "Modified share authentication settings" audit.audit("modify_samba_settings", audit_str, request) return django.http.HttpResponseRedirect('/storage_access/view_samba_server_settings?ack=saved') # return django.shortcuts.render_to_response('logged_in_error.html', # return_dict, # context_instance=django.template.context.RequestContext(request)) except Exception, e: return_dict['base_template'] = "storage_access_base.html" return_dict["page_title"] = 'Modify CIFS authentication settings' return_dict['tab'] = 'auth_server_settings_tab' return_dict["error"] = 'Error modifying CIFS authentication settings' return_dict["error_details"] = str(e) return django.shortcuts.render_to_response("logged_in_error.html", return_dict, context_instance=django.template.context.RequestContext(request))