Macos user type
- admin
- normal
- sharing-only
- group
root
- uid为0
- gid为0
admin
- 根据查到的资料,macOS第一个用户会是管理员权限,gid为501
normal
- 目前我的做法是,区分了root,admin,guest后,其他的归为normal
sharing-only
- 仅共享用户暂时没查到区分方法,uid没什么特征,gid也是20(staff),不好区分
other user
guest
code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 |
std::vector<std::map<std::string, std::string>> genUsers(std::string& context) { std::vector<std::map<std::string, std::string>> results; @autoreleasepool { std::map<std::string, bool> usernames; genODEntries(kODRecordTypeUsers, nil, usernames); for (const auto& username : usernames) { std::map<std::string, std::string> res; res["is_hidden"] = std::to_string(username.second); struct passwd* pwd = getpwnam(username.first.c_str()); if (pwd != nullptr) { genUserRow(res, pwd); } else { res["username"] = username.first.c_str(); } results.push_back(res); } } return results; } void genAccountPolicyDataRow(const std::string& uid, std::map<std::string, std::string>& r) { ODSession* s = [ODSession defaultSession]; NSError* err = nullptr; ODNode* root = [ODNode nodeWithSession:s name:@"/Local/Default" error:&err]; if (err != nullptr) { return; } ODQuery* q = [ODQuery queryWithNode:root forRecordTypes:kODRecordTypeUsers attribute:kODAttributeTypeUniqueID matchType:kODMatchEqualTo queryValues:[NSString stringWithFormat:@"%s", uid.c_str()] returnAttributes:@"dsAttrTypeNative:accountPolicyData" maximumResults:0 error:&err]; if (err != nullptr) { return; } NSArray* od_results = [q resultsAllowingPartial:NO error:&err]; if (err != nullptr) { return; } boost::property_tree::ptree tree; for (ODRecord* re in od_results) { NSError* attrErr = nullptr; NSArray* userPolicyDataValues = [re valuesForAttribute:@"dsAttrTypeNative:accountPolicyData" error:&attrErr]; if (err != nullptr) { return; } if (![userPolicyDataValues count]) { return; } std::string userPlistString = [[[NSString alloc] initWithData:userPolicyDataValues[0] encoding:NSUTF8StringEncoding] UTF8String]; if (userPlistString.empty()) { return; } if (parsePlistContent(userPlistString, tree) != pl::Status::STATUS_SUCC) { return; } } // r["uid"] = std::to_string(uid); r["creation_time"] = std::string(tree.get("creationTime", "")); r["failed_login_count"] = std::string(tree.get("failedLoginCount", "")); r["failed_login_timestamp"] = std::string(tree.get("failedLoginTimestamp", "")); r["password_last_set_time"] = std::string(tree.get("passwordLastSetTime", "")); } std::vector<std::map<std::string, std::string>> genAccountPolicyData(std::string& context) { std::vector<std::map<std::string, std::string>> results; auto users = genUsers(context); @autoreleasepool { for (auto& user : users) { auto ite = user.find("uid"); if (ite != user.end()) { genAccountPolicyDataRow(ite->second, user); } if (ite->second != "") { results.push_back(user); } } } return results; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
auto res = genAccountPolicyData(cotent); // res里面存放了所有用户 for (auto acc : res) { PAccountInfo info = new AccountInfo(); auto ite_end = acc.end(); auto ite = acc.find("username"); if (ite != ite_end) { info->strUserName = ite->second; } ite = acc.find("uid"); if (ite != ite_end) { info->iUid = std::stoll(ite->second); struct passwd *pw_en = getpwuid(info->iUid); std::string pw_name = pw_en->pw_name; std::transform(pw_name.begin(), pw_name.end(), pw_name.begin(), ::tolower); if (pw_en->pw_uid == 0) { info->strGroups = "root"; } else if (pw_en->pw_uid == 501) { info->strGroups = "admin"; } else if (pw_name.compare("guest") == 0) { info->strGroups = "guest"; } else { bool flag = false; struct group *admin_group = getgrnam("admin"); while (*admin_group->gr_mem != NULL) { if (strcmp(pw_en->pw_name, *admin_group->gr_mem) == 0) { flag = true; } admin_group->gr_mem++; } if (flag) { info->strGroups = "admin"; } else { info->strGroups = "normal"; } } } } |
本文为原创文章,版权归Aet所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ Macos开发问题:aarch64架构宏不识别06/25
- ♥ Macos蓝牙相关05/31
- ♥ Macos屏保相关08/22
- ♥ VMaware:安装MacOS 10.14.610/16
- ♥ macOs 解析mach-o05/11
- ♥ Macos服务相关03/27