コード例 #1
0
 public frmDiskSpace(string Element)
 {
     if (Element == null)
     {
         this.Element = null;
     }
     else
     {
         this.Element = JsonConvert.DeserializeObject <ReportingPolicyElementDisk>(Element);
     }
     InitializeComponent();
 }
コード例 #2
0
        private void cmdOK_Click(object sender, EventArgs e)
        {
            Int64 SZ;

            if (Int64.TryParse(txtSize.Text, out SZ) == false)
            {
                MessageBox.Show(this, "Invalid entry", Program.Title, MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                return;
            }
            SZ                 *= GetDiv();
            Element             = new ReportingPolicyElementDisk();
            Element.MinimumSize = SZ;
            Element.DriveLetter = lstDrive.SelectedIndex == 0 ? "$" : Encoding.ASCII.GetString(new byte[] { (byte)('A' + (lstDrive.SelectedIndex - 1)) });
            Element.Method      = lstMethod.SelectedIndex;
            this.DialogResult   = DialogResult.OK;
            this.Close();
        }
コード例 #3
0
ファイル: Reporting.cs プロジェクト: VulpesSARL/Fox-SDC
        string Explain(string e)
        {
            string res = "Missing description: " + e;

            switch (lstType.SelectedIndex)
            {
            case 1:
            {
                ReportingPolicyElementDisk d = JsonConvert.DeserializeObject <ReportingPolicyElementDisk>(e);
                res = (d.DriveLetter == "$" ? "(SYSTEM DRIVE)" : d.DriveLetter + ":\\") + " - Size < " + d.MinimumSize.ToString() + " " + (d.Method == 1 ? "%" : "bytes");
                break;
            }

            case 2:
            {
                ReportingPolicyElementEventLog d = JsonConvert.DeserializeObject <ReportingPolicyElementEventLog>(e);
                res = "";
                if (d.Book == null)
                {
                    d.Book = new List <string>();
                }
                if (d.Sources == null)
                {
                    d.Sources = new List <string>();
                }
                if (d.CategoryNumbers == null)
                {
                    d.CategoryNumbers = new List <int>();
                }
                if (d.EventLogTypes == null)
                {
                    d.EventLogTypes = new List <int>();
                }

                if (d.Book.Count == 0)
                {
                    res += "Book: (all)";
                }
                else
                {
                    res += "Book: ";
                    foreach (string s in d.Book)
                    {
                        res += s + ", ";
                    }
                    if (res.EndsWith(", ") == true)
                    {
                        res = res.Substring(0, res.Length - 2);
                    }
                }

                if (d.Sources.Count == 0)
                {
                    res += " Sources: (any)";
                }
                else
                {
                    res += " Sources: ";
                    foreach (string s in d.Sources)
                    {
                        res += s + ", ";
                    }
                    if (res.EndsWith(", ") == true)
                    {
                        res = res.Substring(0, res.Length - 2);
                    }
                }

                if (d.EventLogTypes.Count == 0)
                {
                    res += " Types: (any)";
                }
                else
                {
                    bool GotInfo = false;
                    res += " Types: ";
                    foreach (int s in d.EventLogTypes)
                    {
                        switch (s)
                        {
                        case 0:
                        case 4:
                            res += GotInfo == false ? " Information, " : ""; GotInfo = true; break;

                        case 1:
                            res += " Error, "; break;

                        case 2:
                            res += " Warning, "; break;

                        case 8:
                            res += " Success Audit, "; break;

                        case 16:
                            res += " Failure Audit, "; break;

                        default:
                            res += " ??? " + d.ToString() + ", "; break;
                        }
                    }
                    if (res.EndsWith(", ") == true)
                    {
                        res = res.Substring(0, res.Length - 2);
                    }
                }

                if (d.CategoryNumbers.Count == 0)
                {
                    res += " Event IDs: (any)";
                }
                else
                {
                    res += " Event IDs: ";
                    foreach (int s in d.CategoryNumbers)
                    {
                        res += s.ToString() + ", ";
                    }
                    if (res.EndsWith(", ") == true)
                    {
                        res = res.Substring(0, res.Length - 2);
                    }
                }
                break;
            }

            case 3:
            {
                ReportingPolicyElementAddRemovePrograms d = JsonConvert.DeserializeObject <ReportingPolicyElementAddRemovePrograms>(e);
                if (d.Names == null)
                {
                    d.Names = new List <string>();
                }
                res = "";
                switch (d.SearchNameIn)
                {
                case 0: res += "Programs with their exact IDs: "; break;

                case 1: res += "Programs containing: "; break;

                case 2: res += "Programs starting with: "; break;

                default: res += "????? " + d.SearchNameIn.ToString() + ": "; break;
                }
                if (d.Names.Count == 0)
                {
                    res += "(any)";
                }
                else
                {
                    foreach (string s in d.Names)
                    {
                        res += "\"" + s + "\", ";
                    }
                    if (res.EndsWith(", ") == true)
                    {
                        res = res.Substring(0, res.Length - 2);
                    }
                }
                res += " ";
                switch (d.SearchBits)
                {
                case 0: break;

                case 1: res += "(32 bit only)"; break;

                case 2: res += "(64 bit only)"; break;
                }

                res += " Notify on: ";
                if (d.NotifyOnAdd == true)
                {
                    res += "Add, ";
                }
                if (d.NotifyOnRemove == true)
                {
                    res += "Removal, ";
                }
                if (d.NotifyOnUpdate == true)
                {
                    res += "Update, ";
                }
                if (res.EndsWith(", ") == true)
                {
                    res = res.Substring(0, res.Length - 2);
                }
                break;
            }

            case 4:
            {
                ReportingPolicyElementStartup d = JsonConvert.DeserializeObject <ReportingPolicyElementStartup>(e);
                if (d.Names == null)
                {
                    d.Names = new List <string>();
                }
                res = "";
                switch (d.SearchNameIn)
                {
                case 0: res += "Startup Item with their exact text: "; break;

                case 1: res += "Startup Item containing: "; break;

                case 2: res += "Startup Item starting with: "; break;

                default: res += "????? " + d.SearchNameIn.ToString() + ": "; break;
                }
                if (d.Names.Count == 0)
                {
                    res += "(any)";
                }
                else
                {
                    foreach (string s in d.Names)
                    {
                        res += "\"" + s + "\", ";
                    }
                    if (res.EndsWith(", ") == true)
                    {
                        res = res.Substring(0, res.Length - 2);
                    }
                }
                res += " ";

                if (string.IsNullOrWhiteSpace(d.SearchLocations) == false)
                {
                    res += " Locations: " + d.SearchLocations;
                }

                res += " Notify on: ";
                if (d.NotifyOnAdd == true)
                {
                    res += "Add, ";
                }
                if (d.NotifyOnRemove == true)
                {
                    res += "Removal, ";
                }
                if (d.NotifyOnUpdate == true)
                {
                    res += "Update, ";
                }
                if (res.EndsWith(", ") == true)
                {
                    res = res.Substring(0, res.Length - 2);
                }
                break;
            }

            case 5:
            {
                ReportingPolicyElementSMART d = JsonConvert.DeserializeObject <ReportingPolicyElementSMART>(e);
                res = "";

                res += " Notify on: ";
                if (d.NotifyOnAdd == true)
                {
                    res += "Add, ";
                }
                if (d.NotifyOnRemove == true)
                {
                    res += "Removal, ";
                }
                if (d.NotifyOnUpdate == true)
                {
                    res += "Update";
                    if (d.SkipAttribUpdateReport != null)
                    {
                        if (d.SkipAttribUpdateReport.Count > 0)
                        {
                            res += " (Skip Attributes: ";
                            foreach (int s in d.SkipAttribUpdateReport)
                            {
                                res += "0x" + s.ToString("X") + ", ";
                            }
                            if (res.EndsWith(", ") == true)
                            {
                                res = res.Substring(0, res.Length - 2);
                            }
                            res += "), ";
                        }
                        else
                        {
                            res += ", ";
                        }
                    }
                    else
                    {
                        res += ", ";
                    }
                }
                if (d.NotifyOnError == true)
                {
                    res += "Error, ";
                }
                if (res.EndsWith(", ") == true)
                {
                    res = res.Substring(0, res.Length - 2);
                }
                break;
            }

            case 6:
            {
                res = "Simple Task is completed";
                break;
            }
            }
            return(res);
        }
コード例 #4
0
ファイル: DiskData.cs プロジェクト: VulpesSARL/Fox-SDC
        void ReportingThread(object DiskDataListO)
        {
            try
            {
                using (SQLLib sql = SQLTest.ConnectSQL("Fox SDC Server for DiskData"))
                {
                    if (sql == null)
                    {
                        FoxEventLog.WriteEventLog("Cannot connect to SQL Server for Disk Data Reporting!", System.Diagnostics.EventLogEntryType.Error);
                        return;
                    }
                    ListDiskDataReport  DiskDataList = (ListDiskDataReport)DiskDataListO;
                    List <PolicyObject> Pol          = Policies.GetPolicyForComputerInternal(sql, DiskDataList.MachineID);

                    Dictionary <string, Int64> AlreadyReported = new Dictionary <string, long>();
                    foreach (PolicyObject PolO in Pol)
                    {
                        if (PolO.Type != PolicyIDs.ReportingPolicy)
                        {
                            continue;
                        }
                        ReportingPolicyElement RepElementRoot = JsonConvert.DeserializeObject <ReportingPolicyElement>(Policies.GetPolicy(sql, PolO.ID).Data);
                        if (RepElementRoot.Type != ReportingPolicyType.Disk)
                        {
                            continue;
                        }

                        foreach (string Element in RepElementRoot.ReportingElements)
                        {
                            ReportingPolicyElementDisk diskrep = JsonConvert.DeserializeObject <ReportingPolicyElementDisk>(Element);
                            if (diskrep.DriveLetter == null)
                            {
                                continue;
                            }
                            if (diskrep.DriveLetter.Length != 1)
                            {
                                continue;
                            }

                            foreach (DiskDataReport DD in DiskDataList.Items)
                            {
                                string Drive = diskrep.DriveLetter;

                                if (diskrep.DriveLetter == "$")
                                {
                                    ComputerData d = Computers.GetComputerDetail(sql, DiskDataList.MachineID);
                                    if (d != null)
                                    {
                                        if (string.IsNullOrWhiteSpace(d.SystemRoot) == false)
                                        {
                                            Drive = d.SystemRoot.Substring(0, 1);
                                        }
                                    }
                                }

                                if (string.IsNullOrWhiteSpace(DD.DriveLetter) == true)
                                {
                                    continue;
                                }
                                if (DD.DriveLetter.ToLower().Substring(0, 1) != Drive.ToLower())
                                {
                                    continue;
                                }

                                Int64 SZLimit;

                                if (diskrep.Method == 1)
                                {
                                    SZLimit = (Int64)((100m / (decimal)DD.Capacity) * (decimal)diskrep.MinimumSize);
                                }
                                else
                                {
                                    SZLimit = diskrep.MinimumSize;
                                }

                                if (DD.FreeSpace < SZLimit)
                                {
                                    bool ReportToAdmin   = RepElementRoot.ReportToAdmin.Value;
                                    bool ReportToClient  = RepElementRoot.ReportToClient.Value;
                                    bool UrgentForAdmin  = RepElementRoot.UrgentForAdmin.Value;
                                    bool UrgentForClient = RepElementRoot.UrgentForClient.Value;

                                    if (AlreadyReported.ContainsKey(DD.DriveLetter) == true)
                                    {
                                        if ((AlreadyReported[DD.DriveLetter] & (Int64)ReportingFlags.ReportToAdmin) != 0)
                                        {
                                            ReportToAdmin = false;
                                        }
                                        if ((AlreadyReported[DD.DriveLetter] & (Int64)ReportingFlags.ReportToClient) != 0)
                                        {
                                            ReportToClient = false;
                                        }
                                        if ((AlreadyReported[DD.DriveLetter] & (Int64)ReportingFlags.UrgentForAdmin) != 0)
                                        {
                                            UrgentForAdmin = false;
                                        }
                                        if ((AlreadyReported[DD.DriveLetter] & (Int64)ReportingFlags.UrgentForClient) != 0)
                                        {
                                            UrgentForClient = false;
                                        }
                                    }

                                    if (ReportToAdmin == false && ReportToClient == false && UrgentForAdmin == false && UrgentForClient == false)
                                    {
                                        continue;
                                    }
                                    ReportingFlags Flags = (ReportToAdmin == true ? ReportingFlags.ReportToAdmin : 0) |
                                                           (ReportToClient == true ? ReportingFlags.ReportToClient : 0) |
                                                           (UrgentForAdmin == true ? ReportingFlags.UrgentForAdmin : 0) |
                                                           (UrgentForClient == true ? ReportingFlags.UrgentForClient : 0);
                                    ReportingProcessor.ReportDiskData(sql, DiskDataList.MachineID, DD.DriveLetter, SZLimit, DD.FreeSpace, DD.Capacity, Flags);
                                    if (AlreadyReported.ContainsKey(DD.DriveLetter) == true)
                                    {
                                        AlreadyReported[DD.DriveLetter] |= (Int64)Flags;
                                    }
                                    else
                                    {
                                        AlreadyReported.Add(DD.DriveLetter, (Int64)Flags);
                                    }
                                }
                            }
                        }
                    }
                }
            }
            catch (Exception ee)
            {
                FoxEventLog.WriteEventLog("SEH in Disk Data Reporting " + ee.ToString(), System.Diagnostics.EventLogEntryType.Error);
            }
        }