Validate device queries
Some checks failed
Build and test GAM / build (false, build, 1, Build Intel Ubuntu Jammy, ubuntu-22.04) (push) Has been cancelled
Build and test GAM / build (false, build, 10, Build x86_64 macOS 15, macos-15-intel) (push) Has been cancelled
Build and test GAM / build (false, build, 11, Build x86_64 macOS 26, macos-26-intel) (push) Has been cancelled
Build and test GAM / build (false, build, 12, Build Arm MacOS 26, macos-26) (push) Has been cancelled
Build and test GAM / build (false, build, 13, Build Intel Windows, windows-2025-vs2026) (push) Has been cancelled
Build and test GAM / build (false, build, 14, Build Arm Windows, windows-11-arm) (push) Has been cancelled
Build and test GAM / build (false, build, 2, Build Intel Ubuntu Noble, ubuntu-24.04) (push) Has been cancelled
Build and test GAM / build (false, build, 3, Build Arm Ubuntu Noble, ubuntu-24.04-arm) (push) Has been cancelled
Build and test GAM / build (false, build, 4, Build Arm Ubuntu Jammy, ubuntu-22.04-arm) (push) Has been cancelled
Build and test GAM / build (false, build, 5, Build Intel StaticX Legacy, ubuntu-22.04, yes) (push) Has been cancelled
Build and test GAM / build (false, build, 6, Build Arm StaticX Legacy, ubuntu-22.04-arm, yes) (push) Has been cancelled
Build and test GAM / build (false, build, 8, Build Arm MacOS 14, macos-14) (push) Has been cancelled
Build and test GAM / build (false, build, 9, Build Arm MacOS 15, macos-15) (push) Has been cancelled
Build and test GAM / build (false, test, 15, Test Python 3.10, ubuntu-24.04, 3.10) (push) Has been cancelled
Build and test GAM / build (false, test, 16, Test Python 3.11, ubuntu-24.04, 3.11) (push) Has been cancelled
Build and test GAM / build (false, test, 17, Test Python 3.12, ubuntu-24.04, 3.12) (push) Has been cancelled
Build and test GAM / build (false, test, 18, Test Python 3.13, ubuntu-24.04, 3.13) (push) Has been cancelled
Build and test GAM / build (false, test, 19, Test Python 3.15-dev, ubuntu-24.04, 3.15-dev) (push) Has been cancelled
Build and test GAM / build (true, test, 20, Test Python 3.14 freethread, ubuntu-24.04, 3.14) (push) Has been cancelled
Build and test GAM / publish (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Push wiki / pushwiki (push) Has been cancelled
Check for Google Root CA Updates / check-certs (push) Has been cancelled
Daily Dependency Pinning (2-Week Buffer) / pin-deps (push) Has been cancelled

This commit is contained in:
Ross Scroggs
2026-05-18 15:07:12 -07:00
parent b9c81e2e24
commit 1ca5b1a610
4 changed files with 42 additions and 17 deletions

View File

@@ -560,9 +560,9 @@ If an item contains spaces, it should be surrounded by ".
See: https://cloud.google.com/access-context-manager/docs/custom-access-level-spec See: https://cloud.google.com/access-context-manager/docs/custom-access-level-spec
<QueryContact> ::= <String> <QueryContact> ::= <String>
See: https://developers.google.com/google-apps/contacts/v3/reference#contacts-query-parameters-reference See: https://developers.google.com/google-apps/contacts/v3/reference#contacts-query-parameters-reference
<QueryCrOS> ::= <String> <QueryCrOS> ::= <String>:<String>
See: https://support.google.com/chrome/a/answer/1698333 See: https://support.google.com/chrome/a/answer/1698333
<QueryDevice> ::= <String> <QueryDevice> ::= <String>:<String>
See: https://support.google.com/a/answer/7549103 See: https://support.google.com/a/answer/7549103
<QueryDriveFile> ::= <String> <QueryDriveFile> ::= <String>
See: https://developers.google.com/drive/api/v3/search-files See: https://developers.google.com/drive/api/v3/search-files
@@ -575,7 +575,7 @@ If an item contains spaces, it should be surrounded by ".
<QueryItem> ::= <UniqueID>|<String> <QueryItem> ::= <UniqueID>|<String>
<QueryMemberRestrictions> ::= <String> <QueryMemberRestrictions> ::= <String>
See: https://cloud.google.com/identity/docs/reference/rest/v1beta1/SecuritySettings#MemberRestriction See: https://cloud.google.com/identity/docs/reference/rest/v1beta1/SecuritySettings#MemberRestriction
<QueryMobile> ::= <String> <QueryMobile> ::= <String>:<String>
See: https://support.google.com/a/answer/7549103 See: https://support.google.com/a/answer/7549103
<QueryTeamDrive> ::= <String> <QueryTeamDrive> ::= <String>
See: https://developers.google.com/drive/api/v3/search-parameters See: https://developers.google.com/drive/api/v3/search-parameters

View File

@@ -1,3 +1,9 @@
7.43.06
Updated commands that use `<QueryCrOS>`, `<QueryDevice>` or `<QueryMobile>` to validate
that it is of the form `field:value` and that `value` does not contain a '?'.
Without validation, Google can return many more devices than are expected.
7.43.05 7.43.05
Added option `matchfield attendeesorganizer <Boolean> <EmailAddressEntity>` to `<EventMatchProperty>` Added option `matchfield attendeesorganizer <Boolean> <EmailAddressEntity>` to `<EventMatchProperty>`

View File

@@ -25,7 +25,7 @@ https://github.com/GAM-team/GAM/wiki
""" """
__author__ = 'GAM Team <google-apps-manager@googlegroups.com>' __author__ = 'GAM Team <google-apps-manager@googlegroups.com>'
__version__ = '7.43.05' __version__ = '7.43.06'
__license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)' __license__ = 'Apache License 2.0 (http://www.apache.org/licenses/LICENSE-2.0)'
# pylint: disable=wrong-import-position # pylint: disable=wrong-import-position
@@ -6071,6 +6071,20 @@ def getQueries(myarg):
return [getString(Cmd.OB_QUERY)] return [getString(Cmd.OB_QUERY)]
return shlexSplitList(getString(Cmd.OB_QUERY_LIST)) return shlexSplitList(getString(Cmd.OB_QUERY_LIST))
def _validateDeviceQuery(entityType, query):
if (':' not in query) or ('?' in query):
Cmd.Backup()
usageErrorExit(Msg.INVALID_DEVICE_QUERY.format(Ent.Singular(entityType), query))
def getDeviceQueries(myarg, entityType):
if myarg in {'query', 'filter'}:
queries = [getString(Cmd.OB_QUERY)]
else:
queries = shlexSplitList(getString(Cmd.OB_QUERY_LIST))
for query in queries:
_validateDeviceQuery(entityType, query)
return queries
def convertEntityToList(entity, shlexSplit=False, nonListEntityType=False): def convertEntityToList(entity, shlexSplit=False, nonListEntityType=False):
if not entity: if not entity:
return [] return []
@@ -6756,6 +6770,7 @@ def getItemsToModify(entityType, entity, memberRoles=None, isSuspended=None, isA
if entityType == Cmd.ENTITY_CROS_SN: if entityType == Cmd.ENTITY_CROS_SN:
queries = [f'id:{query}' for query in queries] queries = [f'id:{query}' for query in queries]
for query in queries: for query in queries:
_validateDeviceQuery(Ent.CROS_DEVICE, query)
printGettingAllAccountEntities(Ent.CROS_DEVICE, query) printGettingAllAccountEntities(Ent.CROS_DEVICE, query)
try: try:
result = callGAPIpages(cd.chromeosdevices(), 'list', 'chromeosdevices', result = callGAPIpages(cd.chromeosdevices(), 'list', 'chromeosdevices',
@@ -6782,9 +6797,9 @@ def getItemsToModify(entityType, entity, memberRoles=None, isSuspended=None, isA
includeChildOrgunits = entityType in Cmd.CROS_OU_CHILDREN_ENTITY_TYPES includeChildOrgunits = entityType in Cmd.CROS_OU_CHILDREN_ENTITY_TYPES
allQualifier = Msg.DIRECTLY_IN_THE.format(Ent.Choose(Ent.ORGANIZATIONAL_UNIT, numOus)) if not includeChildOrgunits else Msg.IN_THE.format(Ent.Choose(Ent.ORGANIZATIONAL_UNIT, numOus)) allQualifier = Msg.DIRECTLY_IN_THE.format(Ent.Choose(Ent.ORGANIZATIONAL_UNIT, numOus)) if not includeChildOrgunits else Msg.IN_THE.format(Ent.Choose(Ent.ORGANIZATIONAL_UNIT, numOus))
if entityType in Cmd.CROS_OU_QUERY_ENTITY_TYPES: if entityType in Cmd.CROS_OU_QUERY_ENTITY_TYPES:
queries = getQueries('query') queries = getDeviceQueries('query', Ent.CROS_DEVICE)
elif entityType in Cmd.CROS_OU_QUERIES_ENTITY_TYPES: elif entityType in Cmd.CROS_OU_QUERIES_ENTITY_TYPES:
queries = getQueries('queries') queries = getDeviceQueries('queries', Ent.CROS_DEVICE)
else: else:
queries = [None] queries = [None]
for ou in ous: for ou in ous:
@@ -25361,7 +25376,7 @@ def doPrintCrOSDevices(entityList=None):
selectionAllowed = False selectionAllowed = False
includeChildOrgunits = myarg in {Cmd.ENTITY_CROS_OU_AND_CHILDREN, Cmd.ENTITY_CROS_OUS_AND_CHILDREN} includeChildOrgunits = myarg in {Cmd.ENTITY_CROS_OU_AND_CHILDREN, Cmd.ENTITY_CROS_OUS_AND_CHILDREN}
elif (selectionAllowed or queries == [None]) and myarg in {'query', 'queries'}: elif (selectionAllowed or queries == [None]) and myarg in {'query', 'queries'}:
queries = getQueries(myarg) queries = getDeviceQueries(myarg, Ent.CROS_DEVICE)
elif myarg.startswith('querytime'): elif myarg.startswith('querytime'):
queryTimes[myarg] = getTimeOrDeltaFromNow()[0:19] queryTimes[myarg] = getTimeOrDeltaFromNow()[0:19]
elif selectionAllowed and myarg == 'select': elif selectionAllowed and myarg == 'select':
@@ -25640,7 +25655,7 @@ def doPrintCrOSActivity(entityList=None):
selectionAllowed = False selectionAllowed = False
directlyInOU = myarg in {Cmd.ENTITY_CROS_OU, Cmd.ENTITY_CROS_OUS} directlyInOU = myarg in {Cmd.ENTITY_CROS_OU, Cmd.ENTITY_CROS_OUS}
elif (selectionAllowed or queries == [None]) and myarg in {'query', 'queries'}: elif (selectionAllowed or queries == [None]) and myarg in {'query', 'queries'}:
queries = getQueries(myarg) queries = getDeviceQueries(myarg, Ent.CROS_DEVICE)
elif myarg.startswith('querytime'): elif myarg.startswith('querytime'):
queryTimes[myarg] = getTimeOrDeltaFromNow()[0:19] queryTimes[myarg] = getTimeOrDeltaFromNow()[0:19]
elif selectionAllowed and myarg == 'select': elif selectionAllowed and myarg == 'select':
@@ -26165,7 +26180,7 @@ def doMoveBrowsers():
elif myarg in {'csv', 'csvfile'}: elif myarg in {'csv', 'csvfile'}:
deviceIds.extend(getEntitiesFromCSVFile(False)) deviceIds.extend(getEntitiesFromCSVFile(False))
elif myarg in {'query', 'queries'}: elif myarg in {'query', 'queries'}:
queries = getQueries(myarg) queries = getDeviceQueries(myarg, Ent.CHROME_BROWSER)
elif myarg.startswith('querytime'): elif myarg.startswith('querytime'):
queryTimes[myarg] = getTimeOrDeltaFromNow()[0:19] queryTimes[myarg] = getTimeOrDeltaFromNow()[0:19]
elif myarg == 'browserou': elif myarg == 'browserou':
@@ -26717,7 +26732,7 @@ def doPrintShowBrowsers():
if csvPF and myarg == 'todrive': if csvPF and myarg == 'todrive':
csvPF.GetTodriveParameters() csvPF.GetTodriveParameters()
elif myarg in {'query', 'queries'}: elif myarg in {'query', 'queries'}:
queries = getQueries(myarg) queries = getDeviceQueries(myarg, Ent.CHROME_BROWSER)
elif myarg.startswith('querytime'): elif myarg.startswith('querytime'):
queryTimes[myarg] = getTimeOrDeltaFromNow()[0:19] queryTimes[myarg] = getTimeOrDeltaFromNow()[0:19]
elif myarg in {'ou', 'org', 'orgunit', 'browserou'}: elif myarg in {'ou', 'org', 'orgunit', 'browserou'}:
@@ -26924,7 +26939,7 @@ def doPrintShowBrowserTokens():
if csvPF and myarg == 'todrive': if csvPF and myarg == 'todrive':
csvPF.GetTodriveParameters() csvPF.GetTodriveParameters()
elif myarg in {'query', 'queries'}: elif myarg in {'query', 'queries'}:
queries = getQueries(myarg) queries = getDeviceQueries(myarg, Ent.CHROME_BROWSER)
elif myarg.startswith('querytime'): elif myarg.startswith('querytime'):
queryTimes[myarg] = getTimeOrDeltaFromNow()[0:19] queryTimes[myarg] = getTimeOrDeltaFromNow()[0:19]
elif myarg in {'ou', 'org', 'orgunit', 'browserou'}: elif myarg in {'ou', 'org', 'orgunit', 'browserou'}:
@@ -31030,6 +31045,7 @@ def getCIDeviceEntity():
if not name.startswith('devices/'): if not name.startswith('devices/'):
name = f'devices/{name}' name = f'devices/{name}'
return ([{'name': name}], ci, customer, True) return ([{'name': name}], ci, customer, True)
_validateDeviceQuery(Ent.DEVICE, query)
printGettingAllAccountEntities(Ent.DEVICE, query) printGettingAllAccountEntities(Ent.DEVICE, query)
pageMessage = getPageMessage() pageMessage = getPageMessage()
try: try:
@@ -31066,6 +31082,7 @@ def getCIDeviceUserEntity():
return ([{'name': name}], ci, customer, True) return ([{'name': name}], ci, customer, True)
Cmd.Backup() Cmd.Backup()
invalidArgumentExit(DEVICE_USERNAME_FORMAT_REQUIRED) invalidArgumentExit(DEVICE_USERNAME_FORMAT_REQUIRED)
_validateDeviceQuery(Ent.DEVICE_USER, query)
printGettingAllAccountEntities(Ent.DEVICE_USER, query) printGettingAllAccountEntities(Ent.DEVICE_USER, query)
pageMessage = getPageMessage() pageMessage = getPageMessage()
try: try:
@@ -31214,7 +31231,7 @@ def doSyncCIDevices():
while Cmd.ArgumentsRemaining(): while Cmd.ArgumentsRemaining():
myarg = getArgument() myarg = getArgument()
if myarg in ['filter', 'filters', 'query', 'queries']: if myarg in ['filter', 'filters', 'query', 'queries']:
queries = getQueries(myarg) queries = getDeviceQueries(myarg, Ent.COMPANY_DEVICE)
elif myarg.startswith('querytime'): elif myarg.startswith('querytime'):
queryTimes[myarg] = getTimeOrDeltaFromNow()[0:19] queryTimes[myarg] = getTimeOrDeltaFromNow()[0:19]
elif myarg in {'csv', 'csvfile'}: elif myarg in {'csv', 'csvfile'}:
@@ -31520,7 +31537,7 @@ def doPrintCIDevices():
if csvPF and myarg == 'todrive': if csvPF and myarg == 'todrive':
csvPF.GetTodriveParameters() csvPF.GetTodriveParameters()
elif myarg in ['filter', 'filters', 'query', 'queries']: elif myarg in ['filter', 'filters', 'query', 'queries']:
queries = getQueries(myarg) queries = getDeviceQueries(myarg, entityType)
elif myarg.startswith('querytime'): elif myarg.startswith('querytime'):
queryTimes[myarg] = getTimeOrDeltaFromNow()[0:19] queryTimes[myarg] = getTimeOrDeltaFromNow()[0:19]
elif myarg == 'orderby': elif myarg == 'orderby':
@@ -31758,7 +31775,7 @@ def doPrintCIDeviceUsers():
if not parent.startswith('devices/'): if not parent.startswith('devices/'):
parent = f'devices/{parent}' parent = f'devices/{parent}'
elif myarg in ['filter', 'filters', 'query', 'queries']: elif myarg in ['filter', 'filters', 'query', 'queries']:
queries = getQueries(myarg) queries = getDeviceQueries(myarg, Ent.DEVICE_USER)
elif myarg.startswith('querytime'): elif myarg.startswith('querytime'):
queryTimes[myarg] = getTimeOrDeltaFromNow()[0:19] queryTimes[myarg] = getTimeOrDeltaFromNow()[0:19]
elif myarg == 'orderby': elif myarg == 'orderby':
@@ -33406,6 +33423,7 @@ def getMobileDeviceEntity():
query = None query = None
if not query: if not query:
return ([{'resourceId': device, 'email': []} for device in getEntityList(Cmd.OB_MOBILE_ENTITY)], cd, True) return ([{'resourceId': device, 'email': []} for device in getEntityList(Cmd.OB_MOBILE_ENTITY)], cd, True)
_validateDeviceQuery(Ent.MOBILE_DEVICE, query)
try: try:
printGettingAllAccountEntities(Ent.MOBILE_DEVICE, query) printGettingAllAccountEntities(Ent.MOBILE_DEVICE, query)
devices = callGAPIpages(cd.mobiledevices(), 'list', 'mobiledevices', devices = callGAPIpages(cd.mobiledevices(), 'list', 'mobiledevices',
@@ -33716,7 +33734,7 @@ def doPrintMobileDevices():
if myarg == 'todrive': if myarg == 'todrive':
csvPF.GetTodriveParameters() csvPF.GetTodriveParameters()
elif myarg in {'query', 'queries'}: elif myarg in {'query', 'queries'}:
queries = getQueries(myarg) queries = getDeviceQueries(myarg, Ent.MOBILE_DEVICE)
elif myarg.startswith('querytime'): elif myarg.startswith('querytime'):
queryTimes[myarg] = getTimeOrDeltaFromNow()[0:19] queryTimes[myarg] = getTimeOrDeltaFromNow()[0:19]
elif myarg == 'orderby': elif myarg == 'orderby':

View File

@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
# Copyright (C) 2025 Ross Scroggs All Rights Reserved. # Copyright (C) 2026 Ross Scroggs All Rights Reserved.
# #
# All Rights Reserved. # All Rights Reserved.
# #
@@ -312,6 +312,7 @@ INVALID_ALIAS = 'Invalid Alias'
INVALID_ATTENDEE_CHANGE = 'Invalid attendee change "{0}"' INVALID_ATTENDEE_CHANGE = 'Invalid attendee change "{0}"'
INVALID_CHARSET = 'Invalid charset "{0}"' INVALID_CHARSET = 'Invalid charset "{0}"'
INVALID_DATE_TIME_RANGE = '{0} {1} must be greater than/equal to {2} {3}' INVALID_DATE_TIME_RANGE = '{0} {1} must be greater than/equal to {2} {3}'
INVALID_DEVICE_QUERY = 'Invalid {0} query "{1}"; it must contain a ":" and must not contain a "?"'
INVALID_EMOJI_NAME = '{0} does not match pattern :[0-9a-z_-]:' INVALID_EMOJI_NAME = '{0} does not match pattern :[0-9a-z_-]:'
INVALID_ENTITY = 'Invalid {0}, {1}' INVALID_ENTITY = 'Invalid {0}, {1}'
INVALID_EVENT_TIMERANGE = '{0} {1} must be less than {2}' INVALID_EVENT_TIMERANGE = '{0} {1} must be less than {2}'
@@ -474,7 +475,7 @@ REASON_ONLY_VALID_WITH_CONTENTRESTRICTIONS_READONLY_TRUE = 'reason only valid wi
REAUTHENTICATION_IS_NEEDED = 'Reauthentication is needed, please run\n\ngam oauth create' REAUTHENTICATION_IS_NEEDED = 'Reauthentication is needed, please run\n\ngam oauth create'
RECOMMEND_RUNNING_GAM_ROTATE_SAKEY = 'Recommend running "gam rotate sakey" to get a new key\n' RECOMMEND_RUNNING_GAM_ROTATE_SAKEY = 'Recommend running "gam rotate sakey" to get a new key\n'
REFUSING_TO_DEPROVISION_DEVICES = 'Refusing to deprovision {0} devices because acknowledge_device_touch_requirement not specified.\nDeprovisioning a device means the device will have to be physically wiped and re-enrolled to be managed by your domain again.\nThis requires physical access to the device and is very time consuming to perform for each device.\nPlease add "acknowledge_device_touch_requirement" to the GAM command if you understand this and wish to proceed with the deprovision.\nPlease also be aware that deprovisioning can have an effect on your device license count.\nSee https://support.google.com/chrome/a/answer/3523633 for full details.' REFUSING_TO_DEPROVISION_DEVICES = 'Refusing to deprovision {0} devices because acknowledge_device_touch_requirement not specified.\nDeprovisioning a device means the device will have to be physically wiped and re-enrolled to be managed by your domain again.\nThis requires physical access to the device and is very time consuming to perform for each device.\nPlease add "acknowledge_device_touch_requirement" to the GAM command if you understand this and wish to proceed with the deprovision.\nPlease also be aware that deprovisioning can have an effect on your device license count.\nSee https://support.google.com/chrome/a/answer/3523633 for full details.'
REFUSING_TO_DEPROVISION_N_DEVICES = 'Refusing to deprovision {0} devices due to maxtodepov {1}.' REFUSING_TO_DEPROVISION_N_DEVICES = 'Refusing to deprovision {0} devices due to maxtodepov {1}.\nSpecify "maxtodeprov 0" to deprovision all {0} devices'
REPLY_TO_CUSTOM_REQUIRES_EMAIL_ADDRESS = 'replyto REPLY_TO_CUSTOM requires customReplyTo <EmailAddress>' REPLY_TO_CUSTOM_REQUIRES_EMAIL_ADDRESS = 'replyto REPLY_TO_CUSTOM requires customReplyTo <EmailAddress>'
REQUEST_COMPLETED_NO_FILES = 'Request completed but no results/files were returned, try requesting again' REQUEST_COMPLETED_NO_FILES = 'Request completed but no results/files were returned, try requesting again'
REQUEST_NOT_COMPLETE = 'Request needs to be completed before downloading, current status is: {0}' REQUEST_NOT_COMPLETE = 'Request needs to be completed before downloading, current status is: {0}'