X-Git-Url: https://jfr.im/git/irc/rqf/shadowircd.git/blobdiff_plain/c88cdb00957d1bafae4587343b5ab7df14b75f8b..91e46e62e5f9faf6735e0c41ce21113939cacb85:/modules/m_resv.c diff --git a/modules/m_resv.c b/modules/m_resv.c index 515d316..963a4ee 100644 --- a/modules/m_resv.c +++ b/modules/m_resv.c @@ -67,7 +67,7 @@ static void cluster_resv(struct Client *source_p, int temp_time, static void handle_remote_unresv(struct Client *source_p, const char *name); static void remove_resv(struct Client *source_p, const char *name); -static int remove_temp_resv(struct Client *source_p, const char *name); +static int remove_resv_from_file(struct Client *source_p, const char *name); /* * mo_resv() @@ -84,6 +84,13 @@ mo_resv(struct Client *client_p, struct Client *source_p, int parc, const char * int temp_time; int loc = 1; + if(!IsOperResv(source_p)) + { + sendto_one(source_p, form_str(ERR_NOPRIVS), + me.name, source_p->name, "resv"); + return 0; + } + /* RESV [time] [ON ] : */ if((temp_time = valid_temp_time(parv[loc])) >= 0) @@ -264,7 +271,7 @@ parse_resv(struct Client *source_p, const char *name, return; } - if(find_nick_resv(name)) + if(find_nick_resv_mask(name)) { sendto_one_notice(source_p, ":A RESV has already been placed on nick: %s", @@ -370,6 +377,13 @@ cluster_resv(struct Client *source_p, int temp_time, const char *name, static int mo_unresv(struct Client *client_p, struct Client *source_p, int parc, const char *parv[]) { + if(!IsOperResv(source_p)) + { + sendto_one(source_p, form_str(ERR_NOPRIVS), + me.name, source_p->name, "resv"); + return 0; + } + if((parc == 4) && (irccmp(parv[2], "ON") == 0)) { if(!IsOperRemoteBan(source_p)) @@ -389,9 +403,6 @@ mo_unresv(struct Client *client_p, struct Client *source_p, int parc, const char cluster_generic(source_p, "UNRESV", SHARED_UNRESV, CAP_CLUSTER, "%s", parv[1]); - if(remove_temp_resv(source_p, parv[1])) - return 0; - remove_resv(source_p, parv[1]); return 0; } @@ -438,30 +449,38 @@ handle_remote_unresv(struct Client *source_p, const char *name) source_p->servptr->name, SHARED_UNRESV)) return; - if(remove_temp_resv(source_p, name)) - return; - remove_resv(source_p, name); return; } -static int -remove_temp_resv(struct Client *source_p, const char *name) +static void +remove_resv(struct Client *source_p, const char *name) { struct ConfItem *aconf = NULL; if(IsChannelName(name)) { if((aconf = hash_find_resv(name)) == NULL) - return 0; + { + sendto_one_notice(source_p, ":No RESV for %s", name); + return; + } - /* its permanent, let remove_resv do it properly */ if(!aconf->hold) - return 0; - + { + if (!remove_resv_from_file(source_p, name)) + return; + } + else + { + sendto_one_notice(source_p, ":RESV for [%s] is removed", name); + sendto_realops_snomask(SNO_GENERAL, L_ALL, + "%s has removed the RESV for: [%s]", + get_oper_name(source_p), name); + ilog(L_KLINE, "UR %s %s", get_oper_name(source_p), name); + } del_from_resv_hash(name, aconf); - free_conf(aconf); } else { @@ -478,35 +497,42 @@ remove_temp_resv(struct Client *source_p, const char *name) } if(aconf == NULL) - return 0; + { + sendto_one_notice(source_p, ":No RESV for %s", name); + return; + } - /* permanent, remove_resv() needs to do it properly */ if(!aconf->hold) - return 0; - + { + if (!remove_resv_from_file(source_p, name)) + return; + } + else + { + sendto_one_notice(source_p, ":RESV for [%s] is removed", name); + sendto_realops_snomask(SNO_GENERAL, L_ALL, + "%s has removed the RESV for: [%s]", + get_oper_name(source_p), name); + ilog(L_KLINE, "UR %s %s", get_oper_name(source_p), name); + } /* already have ptr from the loop above.. */ dlinkDestroy(ptr, &resv_conf_list); - free_conf(aconf); } + free_conf(aconf); - sendto_one_notice(source_p, ":RESV for [%s] is removed", name); - sendto_realops_snomask(SNO_GENERAL, L_ALL, - "%s has removed the RESV for: [%s]", - get_oper_name(source_p), name); - ilog(L_KLINE, "UR %s %s", get_oper_name(source_p), name); - - return 1; + return; } -/* remove_resv() +/* remove_resv_from_file() * * inputs - client removing the resv * - resv to remove * outputs - - * side effects - resv if found, is removed + * side effects - resv if found, is removed from conf + * - does not touch resv hash or resv_conf_list */ -static void -remove_resv(struct Client *source_p, const char *name) +static int +remove_resv_from_file(struct Client *source_p, const char *name) { FILE *in, *out; char buf[BUFSIZE]; @@ -524,7 +550,7 @@ remove_resv(struct Client *source_p, const char *name) if((in = fopen(filename, "r")) == NULL) { sendto_one_notice(source_p, ":Cannot open %s", filename); - return; + return 0; } oldumask = umask(0); @@ -534,7 +560,7 @@ remove_resv(struct Client *source_p, const char *name) sendto_one_notice(source_p, ":Cannot open %s", temppath); fclose(in); umask(oldumask); - return; + return 0; } umask(oldumask); @@ -585,27 +611,28 @@ remove_resv(struct Client *source_p, const char *name) if(error_on_write) { sendto_one_notice(source_p, ":Couldn't write temp resv file, aborted"); - return; + return 0; } else if(!found_resv) { - sendto_one_notice(source_p, ":No RESV for %s", name); + sendto_one_notice(source_p, ":Cannot find RESV for %s in file", name); if(temppath != NULL) (void) unlink(temppath); - return; + return 0; } if (rename(temppath, filename)) { sendto_one_notice(source_p, ":Couldn't rename temp file, aborted"); - return; + return 0; } - rehash_bans(0); sendto_one_notice(source_p, ":RESV for [%s] is removed", name); sendto_realops_snomask(SNO_GENERAL, L_ALL, "%s has removed the RESV for: [%s]", get_oper_name(source_p), name); ilog(L_KLINE, "UR %s %s", get_oper_name(source_p), name); + + return 1; }