One possible way to get around the requirement for having the FILE privilege to access ODBC tables with CONNECT would be to have them called indirectly via a security definer view. However, it does not currently work.
Create a security definer view to access the ODBC table, then create a new user:
[gmontee@localhost ~]$ mysql -u root tmp
|
Reading table information for completion of table and column names
|
You can turn off this feature to get a quicker startup with -A
|
|
Welcome to the MariaDB monitor. Commands end with ; or \g.
|
Your MariaDB connection id is 16
|
Server version: 10.0.15-MariaDB-log MariaDB Server
|
|
Copyright (c) 2000, 2014, Oracle, SkySQL Ab and others.
|
|
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
|
|
MariaDB [tmp]> SHOW CREATE TABLE datetime_table;
|
+----------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
| Table | Create Table |
|
+----------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
| datetime_table | CREATE TABLE `datetime_table` (
|
`id` int(10) NOT NULL,
|
`modifiedon` datetime DEFAULT NULL
|
) ENGINE=CONNECT DEFAULT CHARSET=latin1 CONNECTION='DSN=connect_test_azure;UID=connect_test;PWD=Password1' `TABLE_TYPE`='ODBC' `TABNAME`='dbo.datetime_table' |
|
+----------------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
|
1 row in set (0.00 sec)
|
|
MariaDB [tmp]> DROP USER 'connecttest'@'localhost';
|
Query OK, 0 rows affected (0.00 sec)
|
|
MariaDB [tmp]> CREATE OR REPLACE
|
-> DEFINER = CURRENT_USER
|
-> SQL SECURITY DEFINER
|
-> VIEW datetime_view
|
-> AS SELECT * FROM datetime_table;
|
Query OK, 0 rows affected (0.00 sec)
|
|
MariaDB [tmp]> CREATE USER 'connecttest'@'localhost';
|
Query OK, 0 rows affected (0.00 sec)
|
|
MariaDB [tmp]> GRANT SELECT ON datetime_view TO 'connecttest'@'localhost';
|
Query OK, 0 rows affected (0.00 sec)
|
|
MariaDB [tmp]> \q
|
Bye
|
Now connect with the new user, and try to use the view:
[gmontee@localhost ~]$ mysql -u connecttest tmp
|
Reading table information for completion of table and column names
|
You can turn off this feature to get a quicker startup with -A
|
|
Welcome to the MariaDB monitor. Commands end with ; or \g.
|
Your MariaDB connection id is 17
|
Server version: 10.0.15-MariaDB-log MariaDB Server
|
|
Copyright (c) 2000, 2014, Oracle, SkySQL Ab and others.
|
|
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
|
|
MariaDB [tmp]> SELECT * FROM datetime_view;
|
ERROR 1045 (28000): Access denied for user 'connecttest'@'localhost' (using password: NO)
|
MariaDB [tmp]> \q
|
Bye
|
It didn't work, so give the user privileges on the underlying ODBC table:
[gmontee@localhost ~]$ mysql -u root tmp
|
Reading table information for completion of table and column names
|
You can turn off this feature to get a quicker startup with -A
|
|
Welcome to the MariaDB monitor. Commands end with ; or \g.
|
Your MariaDB connection id is 18
|
Server version: 10.0.15-MariaDB-log MariaDB Server
|
|
Copyright (c) 2000, 2014, Oracle, SkySQL Ab and others.
|
|
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
|
|
MariaDB [tmp]> GRANT FILE ON *.* TO 'connecttest'@'localhost';
|
Query OK, 0 rows affected (0.00 sec)
|
|
MariaDB [tmp]> GRANT SELECT ON datetime_table TO 'connecttest'@'localhost';
|
Query OK, 0 rows affected (0.00 sec)
|
|
MariaDB [tmp]> \q
|
Bye
|
Now try using the view again:
[gmontee@localhost ~]$ mysql -u connecttest tmp
|
Reading table information for completion of table and column names
|
You can turn off this feature to get a quicker startup with -A
|
|
Welcome to the MariaDB monitor. Commands end with ; or \g.
|
Your MariaDB connection id is 19
|
Server version: 10.0.15-MariaDB-log MariaDB Server
|
|
Copyright (c) 2000, 2014, Oracle, SkySQL Ab and others.
|
|
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
|
|
MariaDB [tmp]> SELECT * FROM datetime_view;
|
+----+---------------------+
|
| id | modifiedon |
|
+----+---------------------+
|
| 1 | 2014-01-01 00:00:00 |
|
| 2 | 2016-01-01 00:00:00 |
|
+----+---------------------+
|
2 rows in set (0.24 sec)
|
- relates to
-
MDEV-8545
Security definer views don't work with engine's privilege checks
-
-
Closed
{"report":{"fcp":1600.2000000476837,"ttfb":772,"pageVisibility":"visible","entityId":50028,"key":"jira.project.issue.view-issue","isInitial":true,"threshold":1000,"elementTimings":{},"userDeviceMemory":8,"userDeviceProcessors":64,"apdex":0.5,"journeyId":"be7910c5-c232-4bc9-87fd-b57173a18487","navigationType":0,"readyForUser":1698.5999999046326,"redirectCount":0,"resourceLoadedEnd":1492.7999999523163,"resourceLoadedStart":777.2000000476837,"resourceTiming":[{"duration":265.69999980926514,"initiatorType":"link","name":"https://jira.mariadb.org/s/2c21342762a6a02add1c328bed317ffd-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/css/_super/batch.css","startTime":777.2000000476837,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":777.2000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1042.8999998569489,"responseStart":0,"secureConnectionStart":0},{"duration":265.90000009536743,"initiatorType":"link","name":"https://jira.mariadb.org/s/7ebd35e77e471bc30ff0eba799ebc151-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/css/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.css?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&slack-enabled=true&whisper-enabled=true","startTime":777.3999998569489,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":777.3999998569489,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1043.2999999523163,"responseStart":0,"secureConnectionStart":0},{"duration":422.7000000476837,"initiatorType":"script","name":"https://jira.mariadb.org/s/0917945aaa57108d00c5076fea35e069-CDN/lu2cib/820016/12ta74/0a8bac35585be7fc6c9cc5a0464cd4cf/_/download/contextbatch/js/_super/batch.js?locale=en","startTime":777.5999999046326,"connectEnd":777.5999999046326,"connectStart":777.5999999046326,"domainLookupEnd":777.5999999046326,"domainLookupStart":777.5999999046326,"fetchStart":777.5999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":1049.3999998569489,"responseEnd":1200.2999999523163,"responseStart":1061.3999998569489,"secureConnectionStart":777.5999999046326},{"duration":540.2999999523163,"initiatorType":"script","name":"https://jira.mariadb.org/s/2d8175ec2fa4c816e8023260bd8c1786-CDN/lu2cib/820016/12ta74/494e4c556ecbb29f90a3d3b4f09cb99c/_/download/contextbatch/js/jira.browse.project,project.issue.navigator,jira.view.issue,jira.general,jira.global,atl.general,-_super/batch.js?agile_global_admin_condition=true&jag=true&jira.create.linked.issue=true&locale=en&slack-enabled=true&whisper-enabled=true","startTime":777.7000000476837,"connectEnd":777.7000000476837,"connectStart":777.7000000476837,"domainLookupEnd":777.7000000476837,"domainLookupStart":777.7000000476837,"fetchStart":777.7000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":1049.0999999046326,"responseEnd":1318,"responseStart":1070.3999998569489,"secureConnectionStart":777.7000000476837},{"duration":282.90000009536743,"initiatorType":"script","name":"https://jira.mariadb.org/s/a9324d6758d385eb45c462685ad88f1d-CDN/lu2cib/820016/12ta74/c92c0caa9a024ae85b0ebdbed7fb4bd7/_/download/contextbatch/js/atl.global,-_super/batch.js?locale=en","startTime":777.8999998569489,"connectEnd":777.8999998569489,"connectStart":777.8999998569489,"domainLookupEnd":777.8999998569489,"domainLookupStart":777.8999998569489,"fetchStart":777.8999998569489,"redirectEnd":0,"redirectStart":0,"requestStart":1049.3999998569489,"responseEnd":1060.7999999523163,"responseStart":1060,"secureConnectionStart":777.8999998569489},{"duration":293.2000000476837,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-en/jira.webresources:calendar-en.js","startTime":778.0999999046326,"connectEnd":778.0999999046326,"connectStart":778.0999999046326,"domainLookupEnd":778.0999999046326,"domainLookupStart":778.0999999046326,"fetchStart":778.0999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":1051.8999998569489,"responseEnd":1071.2999999523163,"responseStart":1068.3999998569489,"secureConnectionStart":778.0999999046326},{"duration":292.09999990463257,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:calendar-localisation-moment/jira.webresources:calendar-localisation-moment.js","startTime":778.2000000476837,"connectEnd":778.2000000476837,"connectStart":778.2000000476837,"domainLookupEnd":778.2000000476837,"domainLookupStart":778.2000000476837,"fetchStart":778.2000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":1051.8999998569489,"responseEnd":1070.2999999523163,"responseStart":1067.5,"secureConnectionStart":778.2000000476837},{"duration":270.7000000476837,"initiatorType":"link","name":"https://jira.mariadb.org/s/b04b06a02d1959df322d9cded3aeecc1-CDN/lu2cib/820016/12ta74/a2ff6aa845ffc9a1d22fe23d9ee791fc/_/download/contextbatch/css/jira.global.look-and-feel,-_super/batch.css","startTime":778.3999998569489,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":778.3999998569489,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1049.0999999046326,"responseStart":0,"secureConnectionStart":0},{"duration":292.7999999523163,"initiatorType":"script","name":"https://jira.mariadb.org/rest/api/1.0/shortcuts/820016/47140b6e0a9bc2e4913da06536125810/shortcuts.js?context=issuenavigation&context=issueaction","startTime":778.7000000476837,"connectEnd":778.7000000476837,"connectStart":778.7000000476837,"domainLookupEnd":778.7000000476837,"domainLookupStart":778.7000000476837,"fetchStart":778.7000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":1052.0999999046326,"responseEnd":1071.5,"responseStart":1069.0999999046326,"secureConnectionStart":778.7000000476837},{"duration":272.7999999523163,"initiatorType":"link","name":"https://jira.mariadb.org/s/3ac36323ba5e4eb0af2aa7ac7211b4bb-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/css/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.css?jira.create.linked.issue=true","startTime":778.7999999523163,"connectEnd":0,"connectStart":0,"domainLookupEnd":0,"domainLookupStart":0,"fetchStart":778.7999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":0,"responseEnd":1051.5999999046326,"responseStart":0,"secureConnectionStart":0},{"duration":297,"initiatorType":"script","name":"https://jira.mariadb.org/s/5d5e8fe91fbc506585e83ea3b62ccc4b-CDN/lu2cib/820016/12ta74/d176f0986478cc64f24226b3d20c140d/_/download/contextbatch/js/com.atlassian.jira.projects.sidebar.init,-_super,-project.issue.navigator,-jira.view.issue/batch.js?jira.create.linked.issue=true&locale=en","startTime":779.0999999046326,"connectEnd":779.0999999046326,"connectStart":779.0999999046326,"domainLookupEnd":779.0999999046326,"domainLookupStart":779.0999999046326,"fetchStart":779.0999999046326,"redirectEnd":0,"redirectStart":0,"requestStart":1055.5,"responseEnd":1076.0999999046326,"responseStart":1073.5999999046326,"secureConnectionStart":779.0999999046326},{"duration":530.2999999523163,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-js/jira.webresources:bigpipe-js.js","startTime":785.2000000476837,"connectEnd":785.2000000476837,"connectStart":785.2000000476837,"domainLookupEnd":785.2000000476837,"domainLookupStart":785.2000000476837,"fetchStart":785.2000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":1231.7000000476837,"responseEnd":1315.5,"responseStart":1313.2999999523163,"secureConnectionStart":785.2000000476837},{"duration":707.5999999046326,"initiatorType":"script","name":"https://jira.mariadb.org/s/d41d8cd98f00b204e9800998ecf8427e-CDN/lu2cib/820016/12ta74/1.0/_/download/batch/jira.webresources:bigpipe-init/jira.webresources:bigpipe-init.js","startTime":785.2000000476837,"connectEnd":785.2000000476837,"connectStart":785.2000000476837,"domainLookupEnd":785.2000000476837,"domainLookupStart":785.2000000476837,"fetchStart":785.2000000476837,"redirectEnd":0,"redirectStart":0,"requestStart":1482.0999999046326,"responseEnd":1492.7999999523163,"responseStart":1492.0999999046326,"secureConnectionStart":785.2000000476837},{"duration":198.59999990463257,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":1333.7999999523163,"connectEnd":1333.7999999523163,"connectStart":1333.7999999523163,"domainLookupEnd":1333.7999999523163,"domainLookupStart":1333.7999999523163,"fetchStart":1333.7999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":1500,"responseEnd":1532.3999998569489,"responseStart":1531.0999999046326,"secureConnectionStart":1333.7999999523163},{"duration":150.70000004768372,"initiatorType":"xmlhttprequest","name":"https://jira.mariadb.org/rest/webResources/1.0/resources","startTime":1554.2999999523163,"connectEnd":1554.2999999523163,"connectStart":1554.2999999523163,"domainLookupEnd":1554.2999999523163,"domainLookupStart":1554.2999999523163,"fetchStart":1554.2999999523163,"redirectEnd":0,"redirectStart":0,"requestStart":1671.7000000476837,"responseEnd":1705,"responseStart":1704.0999999046326,"secureConnectionStart":1554.2999999523163}],"fetchStart":0,"domainLookupStart":551,"domainLookupEnd":562,"connectStart":562,"connectEnd":582,"secureConnectionStart":571,"requestStart":582,"responseStart":772,"responseEnd":783,"domLoading":775,"domInteractive":1805,"domContentLoadedEventStart":1805,"domContentLoadedEventEnd":1863,"domComplete":3672,"loadEventStart":3672,"loadEventEnd":3674,"userAgent":"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)","marks":[{"name":"bigPipe.sidebar-id.start","time":1785.0999999046326},{"name":"bigPipe.sidebar-id.end","time":1786},{"name":"bigPipe.activity-panel-pipe-id.start","time":1786.0999999046326},{"name":"bigPipe.activity-panel-pipe-id.end","time":1788.5},{"name":"activityTabFullyLoaded","time":1870.7000000476837}],"measures":[],"correlationId":"9be75d3f758551","effectiveType":"4g","downlink":9.7,"rtt":0,"serverDuration":111,"dbReadsTimeInMs":9,"dbConnsTimeInMs":18,"applicationHash":"9d11dbea5f4be3d4cc21f03a88dd11d8c8687422","experiments":[]}}