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 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332
|
/*=====================================================================
Unix SMB/Netbios implementation.
SMB client library API definitions
Copyright (C) Andrew Tridgell 1998
Copyright (C) Richard Sharpe 2000
Copyright (C) John Terpsra 2000
Copyright (C) Tom Jansen (Ninja ISD) 2002
Copyright (C) Derrell Lipman 2003
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
=====================================================================*/
#ifndef SMBCLIENT_H_INCLUDED
#define SMBCLIENT_H_INCLUDED
/*-------------------------------------------------------------------*/
/* The following are special comments to instruct DOXYGEN (automated
* documentation tool:
*/
/** \defgroup libsmbclient
*/
/** \defgroup structure Data Structures Type and Constants
* \ingroup libsmbclient
* Data structures, types, and constants
*/
/** \defgroup callback Callback function types
* \ingroup libsmbclient
* Callback functions
*/
/** \defgroup file File Functions
* \ingroup libsmbclient
* Functions used to access individual file contents
*/
/** \defgroup directory Directory Functions
* \ingroup libsmbclient
* Functions used to access directory entries
*/
/** \defgroup attribute Attributes Functions
* \ingroup libsmbclient
* Functions used to view or change file and directory attributes
*/
/** \defgroup print Print Functions
* \ingroup libsmbclient
* Functions used to access printing functionality
*/
/** \defgroup misc Miscellaneous Functions
* \ingroup libsmbclient
* Functions that don't fit in to other categories
*/
/*-------------------------------------------------------------------*/
/* Make sure we have the following includes for now ... */
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <utime.h>
#define SMBC_BASE_FD 10000 /* smallest file descriptor returned */
#define SMBC_WORKGROUP 1
#define SMBC_SERVER 2
#define SMBC_FILE_SHARE 3
#define SMBC_PRINTER_SHARE 4
#define SMBC_COMMS_SHARE 5
#define SMBC_IPC_SHARE 6
#define SMBC_DIR 7
#define SMBC_FILE 8
#define SMBC_LINK 9
/**@ingroup structure
* Structure that represents a directory entry.
*
*/
struct smbc_dirent
{
/** Type of entity.
SMBC_WORKGROUP=1,
SMBC_SERVER=2,
SMBC_FILE_SHARE=3,
SMBC_PRINTER_SHARE=4,
SMBC_COMMS_SHARE=5,
SMBC_IPC_SHARE=6,
SMBC_DIR=7,
SMBC_FILE=8,
SMBC_LINK=9,*/
unsigned int smbc_type;
/** Length of this smbc_dirent in bytes
*/
unsigned int dirlen;
/** The length of the comment string in bytes (includes null
* terminator)
*/
unsigned int commentlen;
/** Points to the null terminated comment string
*/
char *comment;
/** The length of the name string in bytes (includes null
* terminator)
*/
unsigned int namelen;
/** Points to the null terminated name string
*/
char name[1];
};
/*
* Flags for smbc_setxattr()
* Specify a bitwise OR of these, or 0 to add or replace as necessary
*/
#define SMBC_XATTR_FLAG_CREATE 0x1 /* fail if attr already exists */
#define SMBC_XATTR_FLAG_REPLACE 0x2 /* fail if attr does not exist */
/*
* Mappings of the DOS mode bits, as returned by smbc_getxattr() when the
* attribute name "system.dos_attr.mode" (or "system.dos_attr.*" or
* "system.*") is specified.
*/
#define SMBC_DOS_MODE_READONLY 0x01
#define SMBC_DOS_MODE_HIDDEN 0x02
#define SMBC_DOS_MODE_SYSTEM 0x04
#define SMBC_DOS_MODE_VOLUME_ID 0x08
#define SMBC_DOS_MODE_DIRECTORY 0x10
#define SMBC_DOS_MODE_ARCHIVE 0x20
#ifndef ENOATTR
# define ENOATTR ENOENT /* No such attribute */
#endif
/**@ingroup structure
* Structure that represents a print job.
*
*/
#ifndef _CLIENT_H
struct print_job_info
{
/** numeric ID of the print job
*/
unsigned short id;
/** represents print job priority (lower numbers mean higher priority)
*/
unsigned short priority;
/** Size of the print job
*/
size_t size;
/** Name of the user that owns the print job
*/
char user[128];
/** Name of the print job. This will have no name if an anonymous print
* file was opened. Ie smb://server/printer
*/
char name[128];
/** Time the print job was spooled
*/
time_t t;
};
#endif /* _CLIENT_H */
/**@ingroup structure
* Server handle
*/
typedef struct _SMBCSRV SMBCSRV;
/**@ingroup structure
* File or directory handle
*/
typedef struct _SMBCFILE SMBCFILE;
/**@ingroup structure
* File or directory handle
*/
typedef struct _SMBCCTX SMBCCTX;
/**@ingroup callback
* Authentication callback function type.
*
* Type for the the authentication function called by the library to
* obtain authentication credentals
*
* @param srv Server being authenticated to
*
* @param shr Share being authenticated to
*
* @param wg Pointer to buffer containing a "hint" for the
* workgroup to be authenticated. Should be filled in
* with the correct workgroup if the hint is wrong.
*
* @param wglen The size of the workgroup buffer in bytes
*
* @param un Pointer to buffer containing a "hint" for the
* user name to be use for authentication. Should be
* filled in with the correct workgroup if the hint is
* wrong.
*
* @param unlen The size of the username buffer in bytes
*
* @param pw Pointer to buffer containing to which password
* copied
*
* @param pwlen The size of the password buffer in bytes
*
*/
typedef void (*smbc_get_auth_data_fn)(const char *srv,
const char *shr,
char *wg, int wglen,
char *un, int unlen,
char *pw, int pwlen);
/**@ingroup callback
* Print job info callback function type.
*
* @param i pointer to print job information structure
*
*/
typedef void (*smbc_list_print_job_fn)(struct print_job_info *i);
/**@ingroup callback
* Check if a server is still good
*
* @param c pointer to smb context
*
* @param srv pointer to server to check
*
* @return 0 when connection is good. 1 on error.
*
*/
typedef int (*smbc_check_server_fn)(SMBCCTX * c, SMBCSRV *srv);
/**@ingroup callback
* Remove a server if unused
*
* @param c pointer to smb context
*
* @param srv pointer to server to remove
*
* @return 0 on success. 1 on failure.
*
*/
typedef int (*smbc_remove_unused_server_fn)(SMBCCTX * c, SMBCSRV *srv);
/**@ingroup callback
* Add a server to the cache system
*
* @param c pointer to smb context
*
* @param srv pointer to server to add
*
* @param server server name
*
* @param share share name
*
* @param workgroup workgroup used to connect
*
* @param username username used to connect
*
* @return 0 on success. 1 on failure.
*
*/
typedef int (*smbc_add_cached_srv_fn) (SMBCCTX * c, SMBCSRV *srv,
const char * server, const char * share,
const char * workgroup, const char * username);
/**@ingroup callback
* Look up a server in the cache system
*
* @param c pointer to smb context
*
* @param server server name to match
*
* @param share share name to match
*
* @param workgroup workgroup to match
*
* @param username username to match
*
* @return pointer to SMBCSRV on success. NULL on failure.
*
*/
typedef SMBCSRV * (*smbc_get_cached_srv_fn) (SMBCCTX * c, const char * server,
const char * share, const char * workgroup,
const char * username);
/**@ingroup callback
* Check if a server is still good
*
* @param c pointer to smb context
*
* @param srv pointer to server to remove
*
* @return 0 when found and removed. 1 on failure.
*
*/
typedef int (*smbc_remove_cached_srv_fn)(SMBCCTX * c, SMBCSRV *srv);
/**@ingroup callback
* Try to remove all servers from the cache system and disconnect
*
* @param c pointer to smb context
*
* @return 0 when found and removed. 1 on failure.
*
*/
typedef int (*smbc_purge_cached_fn) (SMBCCTX * c);
/**@ingroup structure
* Structure that contains a client context information
* This structure is know as SMBCCTX
*/
struct _SMBCCTX {
/** debug level
*/
int debug;
/** netbios name used for making connections
*/
char * netbios_name;
/** workgroup name used for making connections
*/
char * workgroup;
/** username used for making connections
*/
char * user;
/** timeout used for waiting on connections / response data (in milliseconds)
*/
int timeout;
/** callable functions for files:
* For usage and return values see the smbc_* functions
*/
SMBCFILE * (*open) (SMBCCTX *c, const char *fname, int flags, mode_t mode);
SMBCFILE * (*creat) (SMBCCTX *c, const char *path, mode_t mode);
ssize_t (*read) (SMBCCTX *c, SMBCFILE *file, void *buf, size_t count);
ssize_t (*write) (SMBCCTX *c, SMBCFILE *file, void *buf, size_t count);
int (*unlink) (SMBCCTX *c, const char *fname);
int (*rename) (SMBCCTX *ocontext, const char *oname,
SMBCCTX *ncontext, const char *nname);
off_t (*lseek) (SMBCCTX *c, SMBCFILE * file, off_t offset, int whence);
int (*stat) (SMBCCTX *c, const char *fname, struct stat *st);
int (*fstat) (SMBCCTX *c, SMBCFILE *file, struct stat *st);
int (*close) (SMBCCTX *c, SMBCFILE *file);
/** callable functions for dirs
*/
SMBCFILE * (*opendir) (SMBCCTX *c, const char *fname);
int (*closedir)(SMBCCTX *c, SMBCFILE *dir);
struct smbc_dirent * (*readdir)(SMBCCTX *c, SMBCFILE *dir);
int (*getdents)(SMBCCTX *c, SMBCFILE *dir,
struct smbc_dirent *dirp, int count);
int (*mkdir) (SMBCCTX *c, const char *fname, mode_t mode);
int (*rmdir) (SMBCCTX *c, const char *fname);
off_t (*telldir) (SMBCCTX *c, SMBCFILE *dir);
int (*lseekdir)(SMBCCTX *c, SMBCFILE *dir, off_t offset);
int (*fstatdir)(SMBCCTX *c, SMBCFILE *dir, struct stat *st);
int (*chmod)(SMBCCTX *c, const char *fname, mode_t mode);
int (*utimes)(SMBCCTX *c,
const char *fname, struct timeval *tbuf);
int (*setxattr)(SMBCCTX *context,
const char *fname,
const char *name,
const void *value,
size_t size,
int flags);
int (*getxattr)(SMBCCTX *context,
const char *fname,
const char *name,
const void *value,
size_t size);
int (*removexattr)(SMBCCTX *context,
const char *fname,
const char *name);
int (*listxattr)(SMBCCTX *context,
const char *fname,
char *list,
size_t size);
/** callable functions for printing
*/
int (*print_file)(SMBCCTX *c_file, const char *fname,
SMBCCTX *c_print, const char *printq);
SMBCFILE * (*open_print_job)(SMBCCTX *c, const char *fname);
int (*list_print_jobs)(SMBCCTX *c, const char *fname, smbc_list_print_job_fn fn);
int (*unlink_print_job)(SMBCCTX *c, const char *fname, int id);
/** Callbacks
* These callbacks _always_ have to be initialized because they will not be checked
* at dereference for increased speed.
*/
struct _smbc_callbacks {
/** authentication function callback: called upon auth requests
*/
smbc_get_auth_data_fn auth_fn;
/** check if a server is still good
*/
smbc_check_server_fn check_server_fn;
/** remove a server if unused
*/
smbc_remove_unused_server_fn remove_unused_server_fn;
/** Cache subsystem
* For an example cache system see samba/source/libsmb/libsmb_cache.c
* Cache subsystem functions follow.
*/
/** server cache addition
*/
smbc_add_cached_srv_fn add_cached_srv_fn;
/** server cache lookup
*/
smbc_get_cached_srv_fn get_cached_srv_fn;
/** server cache removal
*/
smbc_remove_cached_srv_fn remove_cached_srv_fn;
/** server cache purging, try to remove all cached servers (disconnect)
*/
smbc_purge_cached_fn purge_cached_fn;
} callbacks;
/** Space to store private data of the server cache.
*/
struct smbc_server_cache * server_cache;
int flags;
/** user options selections that apply to this session
*/
struct _smbc_options {
/*
* From how many local master browsers should the list of
* workgroups be retrieved? It can take up to 12 minutes or
* longer after a server becomes a local master browser, for
* it to have the entire browse list (the list of
* workgroups/domains) from an entire network. Since a client
* never knows which local master browser will be found first,
* the one which is found first and used to retrieve a browse
* list may have an incomplete or empty browse list. By
* requesting the browse list from multiple local master
* browsers, a more complete list can be generated. For small
* networks (few workgroups), it is recommended that this
* value be set to 0, causing the browse lists from all found
* local master browsers to be retrieved and merged. For
* networks with many workgroups, a suitable value for this
* variable is probably somewhere around 3. (Default: 3).
*/
int browse_max_lmb_count;
/*
* There is a difference in the desired return strings from
* smbc_readdir() depending upon whether the filenames are to
* be displayed to the user, or whether they are to be
* appended to the path name passed to smbc_opendir() to call
* a further smbc_ function (e.g. open the file with
* smbc_open()). In the former case, the filename should be
* in "human readable" form. In the latter case, the smbc_
* functions expect a URL which must be url-encoded. Those
* functions decode the URL. If, for example, smbc_readdir()
* returned a file name of "abc%20def.txt", passing a path
* with this file name attached to smbc_open() would cause
* smbc_open to attempt to open the file "abc def.txt" since
* the %20 is decoded into a space.
*
* Set this option to True if the names returned by
* smbc_readdir() should be url-encoded such that they can be
* passed back to another smbc_ call. Set it to False if the
* names returned by smbc_readdir() are to be presented to the
* user.
*
* For backwards compatibility, this option defaults to False.
*/
int urlencode_readdir_entries;
/*
* Some Windows versions appear to have a limit to the number
* of concurrent SESSIONs and/or TREE CONNECTions. In
* one-shot programs (i.e. the program runs and then quickly
* ends, thereby shutting down all connections), it is
* probably reasonable to establish a new connection for each
* share. In long-running applications, the limitation can be
* avoided by using only a single connection to each server,
* and issuing a new TREE CONNECT when the share is accessed.
*/
int one_share_per_server;
} options;
/** INTERNAL DATA
* do _NOT_ touch this from your program !
*/
struct smbc_internal_data * internal;
};
/* Flags for SMBCCTX->flags */
#define SMB_CTX_FLAG_USE_KERBEROS (1 << 0)
#define SMB_CTX_FLAG_FALLBACK_AFTER_KERBEROS (1 << 1)
#define SMBCCTX_FLAG_NO_AUTO_ANONYMOUS_LOGON (1 << 2) /* don't try to do automatic anon login */
/**@ingroup misc
* Create a new SBMCCTX (a context).
*
* Must be called before the context is passed to smbc_context_init()
*
* @return The given SMBCCTX pointer on success, NULL on error with errno set:
* - ENOMEM Out of memory
*
* @see smbc_free_context(), smbc_init_context()
*
* @note Do not forget to smbc_init_context() the returned SMBCCTX pointer !
*/
#ifdef __cplusplus
extern "C" {
#endif
SMBCCTX * smbc_new_context(void);
#ifdef __cplusplus
}
#endif
/**@ingroup misc
* Delete a SBMCCTX (a context) acquired from smbc_new_context().
*
* The context will be deleted if possible.
*
* @param context A pointer to a SMBCCTX obtained from smbc_new_context()
*
* @param shutdown_ctx If 1, all connections and files will be closed even if they are busy.
*
*
* @return Returns 0 on succes. Returns 1 on failure with errno set:
* - EBUSY Server connections are still used, Files are open or cache
* could not be purged
* - EBADF context == NULL
*
* @see smbc_new_context()
*
* @note It is advised to clean up all the contexts with shutdown_ctx set to 1
* just before exit()'ing. When shutdown_ctx is 0, this function can be
* use in periodical cleanup functions for example.
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_free_context(SMBCCTX * context, int shutdown_ctx);
#ifdef __cplusplus
}
#endif
/**@ingroup misc
* Initialize a SBMCCTX (a context).
*
* Must be called before using any SMBCCTX API function
*
* @param context A pointer to a SMBCCTX obtained from smbc_new_context()
*
* @return A pointer to the given SMBCCTX on success, NULL on error with errno set:
* - EBADF NULL context given
* - ENOMEM Out of memory
* - ENOENT The smb.conf file would not load
*
* @see smbc_new_context()
*
* @note my_context = smbc_init_context(smbc_new_context()) is perfectly safe,
* but it might leak memory on smbc_context_init() failure. Avoid this.
* You'll have to call smbc_free_context() yourself on failure.
*/
#ifdef __cplusplus
extern "C" {
#endif
SMBCCTX * smbc_init_context(SMBCCTX * context);
#ifdef __cplusplus
}
#endif
/**@ingroup misc
* Initialize the samba client library.
*
* Must be called before using any of the smbclient API function
*
* @param fn The function that will be called to obtaion
* authentication credentials.
*
* @param debug Allows caller to set the debug level. Can be
* changed in smb.conf file. Allows caller to set
* debugging if no smb.conf.
*
* @return 0 on success, < 0 on error with errno set:
* - ENOMEM Out of memory
* - ENOENT The smb.conf file would not load
*
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_init(smbc_get_auth_data_fn fn, int debug);
#ifdef __cplusplus
}
#endif
/**@ingroup misc
* Set or retrieve the compatibility library's context pointer
*
* @param context New context to use, or NULL. If a new context is provided,
* it must have allocated with smbc_new_context() and
* initialized with smbc_init_context(), followed, optionally,
* by some manual changes to some of the non-internal fields.
*
* @return The old context.
*
* @see smbc_new_context(), smbc_init_context(), smbc_init()
*
* @note This function may be called prior to smbc_init() to force
* use of the next context without any internal calls to
* smbc_new_context() or smbc_init_context(). It may also
* be called after smbc_init() has already called those two
* functions, to replace the existing context with a new one.
* Care should be taken, in this latter case, to ensure that
* the server cache and any data allocated by the
* authentication functions have been freed, if necessary.
*/
#ifdef __cplusplus
extern "C" {
#endif
SMBCCTX * smbc_set_context(SMBCCTX * new_context);
#ifdef __cplusplus
}
#endif
/**@ingroup file
* Open a file on an SMB server.
*
* @param furl The smb url of the file to be opened.
*
* @param flags Is one of O_RDONLY, O_WRONLY or O_RDWR which
* request opening the file read-only,write-only
* or read/write. flags may also be bitwise-or'd with
* one or more of the following:
* O_CREAT - If the file does not exist it will be
* created.
* O_EXCL - When used with O_CREAT, if the file
* already exists it is an error and the open will
* fail.
* O_TRUNC - If the file already exists it will be
* truncated.
* O_APPEND The file is opened in append mode
*
* @param mode mode specifies the permissions to use if a new
* file is created. It is modified by the
* process's umask in the usual way: the permissions
* of the created file are (mode & ~umask)
*
* Not currently use, but there for future use.
* We will map this to SYSTEM, HIDDEN, etc bits
* that reverses the mapping that smbc_fstat does.
*
* @return Valid file handle, < 0 on error with errno set:
* - ENOMEM Out of memory
* - EINVAL if an invalid parameter passed, like no
* file, or smbc_init not called.
* - EEXIST pathname already exists and O_CREAT and
* O_EXCL were used.
* - EISDIR pathname refers to a directory and
* the access requested involved writing.
* - EACCES The requested access to the file is not
* allowed
* - ENODEV The requested share does not exist
* - ENOTDIR A file on the path is not a directory
* - ENOENT A directory component in pathname does
* not exist.
*
* @see smbc_creat()
*
* @note This call uses an underlying routine that may create
* a new connection to the server specified in the URL.
* If the credentials supplied in the URL, or via the
* auth_fn in the smbc_init call, fail, this call will
* try again with an empty username and password. This
* often gets mapped to the guest account on some machines.
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_open(const char *furl, int flags, mode_t mode);
#ifdef __cplusplus
}
#endif
/**@ingroup file
* Create a file on an SMB server.
*
* Same as calling smbc_open() with flags = O_CREAT|O_WRONLY|O_TRUNC
*
* @param furl The smb url of the file to be created
*
* @param mode mode specifies the permissions to use if a new
* file is created. It is modified by the
* process's umask in the usual way: the permissions
* of the created file are (mode & ~umask)
*
* NOTE, the above is not true. We are dealing with
* an SMB server, which has no concept of a umask!
*
* @return Valid file handle, < 0 on error with errno set:
* - ENOMEM Out of memory
* - EINVAL if an invalid parameter passed, like no
* file, or smbc_init not called.
* - EEXIST pathname already exists and O_CREAT and
* O_EXCL were used.
* - EISDIR pathname refers to a directory and
* the access requested involved writing.
* - EACCES The requested access to the file is not
* allowed
* - ENOENT A directory component in pathname does
* not exist.
* - ENODEV The requested share does not exist.
* @see smbc_open()
*
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_creat(const char *furl, mode_t mode);
#ifdef __cplusplus
}
#endif
/**@ingroup file
* Read from a file using an opened file handle.
*
* @param fd Open file handle from smbc_open() or smbc_creat()
*
* @param buf Pointer to buffer to recieve read data
*
* @param bufsize Size of buf in bytes
*
* @return Number of bytes read, < 0 on error with errno set:
* - EISDIR fd refers to a directory
* - EBADF fd is not a valid file descriptor or
* is not open for reading.
* - EINVAL fd is attached to an object which is
* unsuitable for reading, or no buffer passed or
* smbc_init not called.
*
* @see smbc_open(), smbc_write()
*
*/
#ifdef __cplusplus
extern "C" {
#endif
ssize_t smbc_read(int fd, void *buf, size_t bufsize);
#ifdef __cplusplus
}
#endif
/**@ingroup file
* Write to a file using an opened file handle.
*
* @param fd Open file handle from smbc_open() or smbc_creat()
*
* @param buf Pointer to buffer to recieve read data
*
* @param bufsize Size of buf in bytes
*
* @return Number of bytes written, < 0 on error with errno set:
* - EISDIR fd refers to a directory.
* - EBADF fd is not a valid file descriptor or
* is not open for reading.
* - EINVAL fd is attached to an object which is
* unsuitable for reading, or no buffer passed or
* smbc_init not called.
*
* @see smbc_open(), smbc_read()
*
*/
#ifdef __cplusplus
extern "C" {
#endif
ssize_t smbc_write(int fd, void *buf, size_t bufsize);
#ifdef __cplusplus
}
#endif
/**@ingroup file
* Seek to a specific location in a file.
*
* @param fd Open file handle from smbc_open() or smbc_creat()
*
* @param offset Offset in bytes from whence
*
* @param whence A location in the file:
* - SEEK_SET The offset is set to offset bytes from
* the beginning of the file
* - SEEK_CUR The offset is set to current location
* plus offset bytes.
* - SEEK_END The offset is set to the size of the
* file plus offset bytes.
*
* @return Upon successful completion, lseek returns the
* resulting offset location as measured in bytes
* from the beginning of the file. Otherwise, a value
* of (off_t)-1 is returned and errno is set to
* indicate the error:
* - EBADF Fildes is not an open file descriptor.
* - EINVAL Whence is not a proper value or smbc_init
* not called.
*
* @todo Are all the whence values really supported?
*
* @todo Are errno values complete and correct?
*/
#ifdef __cplusplus
extern "C" {
#endif
off_t smbc_lseek(int fd, off_t offset, int whence);
#ifdef __cplusplus
}
#endif
/**@ingroup file
* Close an open file handle.
*
* @param fd The file handle to close
*
* @return 0 on success, < 0 on error with errno set:
* - EBADF fd isn't a valid open file descriptor
* - EINVAL smbc_init() failed or has not been called
*
* @see smbc_open(), smbc_creat()
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_close(int fd);
#ifdef __cplusplus
}
#endif
/**@ingroup directory
* Unlink (delete) a file or directory.
*
* @param furl The smb url of the file to delete
*
* @return 0 on success, < 0 on error with errno set:
* - EACCES or EPERM Write access to the directory
* containing pathname is not allowed or one
* of the directories in pathname did not allow
* search (execute) permission
* - ENOENT A directory component in pathname does
* not exist
* - EINVAL NULL was passed in the file param or
* smbc_init not called.
* - EACCES You do not have access to the file
* - ENOMEM Insufficient kernel memory was available
*
* @see smbc_rmdir()s
*
* @todo Are errno values complete and correct?
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_unlink(const char *furl);
#ifdef __cplusplus
}
#endif
/**@ingroup directory
* Rename or move a file or directory.
*
* @param ourl The original smb url (source url) of file or
* directory to be moved
*
* @param nurl The new smb url (destination url) of the file
* or directory after the move. Currently nurl must
* be on the same share as ourl.
*
* @return 0 on success, < 0 on error with errno set:
* - EISDIR nurl is an existing directory, but ourl is
* not a directory.
* - EEXIST nurl is a non-empty directory,
* i.e., contains entries other than "." and ".."
* - EINVAL The new url contained a path prefix
* of the old, or, more generally, an attempt was
* made to make a directory a subdirectory of itself
* or smbc_init not called.
* - ENOTDIR A component used as a directory in ourl
* or nurl path is not, in fact, a directory. Or,
* ourl is a directory, and newpath exists but is not
* a directory.
* - EACCES or EPERM Write access to the directory
* containing ourl or nurl is not allowed for the
* process's effective uid, or one of the
* directories in ourl or nurl did not allow search
* (execute) permission, or ourl was a directory
* and did not allow write permission.
* - ENOENT A directory component in ourl or nurl
* does not exist.
* - EXDEV Rename across shares not supported.
* - ENOMEM Insufficient kernel memory was available.
* - EEXIST The target file, nurl, already exists.
*
*
* @todo Are we going to support copying when urls are not on the same
* share? I say no... NOTE. I agree for the moment.
*
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_rename(const char *ourl, const char *nurl);
#ifdef __cplusplus
}
#endif
/**@ingroup directory
* Open a directory used to obtain directory entries.
*
* @param durl The smb url of the directory to open
*
* @return Valid directory handle. < 0 on error with errno set:
* - EACCES Permission denied.
* - EINVAL A NULL file/URL was passed, or the URL would
* not parse, or was of incorrect form or smbc_init not
* called.
* - ENOENT durl does not exist, or name is an
* - ENOMEM Insufficient memory to complete the
* operation.
* - ENOTDIR name is not a directory.
* - EPERM the workgroup could not be found.
* - ENODEV the workgroup or server could not be found.
*
* @see smbc_getdents(), smbc_readdir(), smbc_closedir()
*
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_opendir(const char *durl);
#ifdef __cplusplus
}
#endif
/**@ingroup directory
* Close a directory handle opened by smbc_opendir().
*
* @param dh Directory handle to close
*
* @return 0 on success, < 0 on error with errno set:
* - EBADF dh is an invalid directory handle
*
* @see smbc_opendir()
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_closedir(int dh);
#ifdef __cplusplus
}
#endif
/**@ingroup directory
* Get multiple directory entries.
*
* smbc_getdents() reads as many dirent structures from the an open
* directory handle into a specified memory area as will fit.
*
* @param dh Valid directory as returned by smbc_opendir()
*
* @param dirp pointer to buffer that will receive the directory
* entries.
*
* @param count The size of the dirp buffer in bytes
*
* @returns If any dirents returned, return will indicate the
* total size. If there were no more dirents available,
* 0 is returned. < 0 indicates an error.
* - EBADF Invalid directory handle
* - EINVAL Result buffer is too small or smbc_init
* not called.
* - ENOENT No such directory.
* @see , smbc_dirent, smbc_readdir(), smbc_open()
*
* @todo Are errno values complete and correct?
*
* @todo Add example code so people know how to parse buffers.
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_getdents(unsigned int dh, struct smbc_dirent *dirp, int count);
#ifdef __cplusplus
}
#endif
/**@ingroup directory
* Get a single directory entry.
*
* @param dh Valid directory as returned by smbc_opendir()
*
* @return A pointer to a smbc_dirent structure, or NULL if an
* error occurs or end-of-directory is reached:
* - EBADF Invalid directory handle
* - EINVAL smbc_init() failed or has not been called
*
* @see smbc_dirent, smbc_getdents(), smbc_open()
*/
#ifdef __cplusplus
extern "C" {
#endif
struct smbc_dirent* smbc_readdir(unsigned int dh);
#ifdef __cplusplus
}
#endif
/**@ingroup directory
* Get the current directory offset.
*
* smbc_telldir() may be used in conjunction with smbc_readdir() and
* smbc_lseekdir().
*
* @param dh Valid directory as returned by smbc_opendir()
*
* @return The current location in the directory stream or -1
* if an error occur. The current location is not
* an offset. Becuase of the implementation, it is a
* handle that allows the library to find the entry
* later.
* - EBADF dh is not a valid directory handle
* - EINVAL smbc_init() failed or has not been called
* - ENOTDIR if dh is not a directory
*
* @see smbc_readdir()
*
*/
#ifdef __cplusplus
extern "C" {
#endif
off_t smbc_telldir(int dh);
#ifdef __cplusplus
}
#endif
/**@ingroup directory
* lseek on directories.
*
* smbc_lseekdir() may be used in conjunction with smbc_readdir() and
* smbc_telldir(). (rewind by smbc_lseekdir(fd, NULL))
*
* @param fd Valid directory as returned by smbc_opendir()
*
* @param offset The offset (as returned by smbc_telldir). Can be
* NULL, in which case we will rewind
*
* @return 0 on success, -1 on failure
* - EBADF dh is not a valid directory handle
* - ENOTDIR if dh is not a directory
* - EINVAL offset did not refer to a valid dirent or
* smbc_init not called.
*
* @see smbc_telldir()
*
*
* @todo In what does the reture and errno values mean?
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_lseekdir(int fd, off_t offset);
#ifdef __cplusplus
}
#endif
/**@ingroup directory
* Create a directory.
*
* @param durl The url of the directory to create
*
* @param mode Specifies the permissions to use. It is modified
* by the process's umask in the usual way: the
* permissions of the created file are (mode & ~umask).
*
* @return 0 on success, < 0 on error with errno set:
* - EEXIST directory url already exists
* - EACCES The parent directory does not allow write
* permission to the process, or one of the directories
* - ENOENT A directory component in pathname does not
* exist.
* - EINVAL NULL durl passed or smbc_init not called.
* - ENOMEM Insufficient memory was available.
*
* @see smbc_rmdir()
*
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_mkdir(const char *durl, mode_t mode);
#ifdef __cplusplus
}
#endif
/**@ingroup directory
* Remove a directory.
*
* @param durl The smb url of the directory to remove
*
* @return 0 on success, < 0 on error with errno set:
* - EACCES or EPERM Write access to the directory
* containing pathname was not allowed.
* - EINVAL durl is NULL or smbc_init not called.
* - ENOENT A directory component in pathname does not
* exist.
* - ENOTEMPTY directory contains entries.
* - ENOMEM Insufficient kernel memory was available.
*
* @see smbc_mkdir(), smbc_unlink()
*
* @todo Are errno values complete and correct?
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_rmdir(const char *durl);
#ifdef __cplusplus
}
#endif
/**@ingroup attribute
* Get information about a file or directory.
*
* @param url The smb url to get information for
*
* @param st pointer to a buffer that will be filled with
* standard Unix struct stat information.
*
* @return 0 on success, < 0 on error with errno set:
* - ENOENT A component of the path file_name does not
* exist.
* - EINVAL a NULL url was passed or smbc_init not called.
* - EACCES Permission denied.
* - ENOMEM Out of memory
* - ENOTDIR The target dir, url, is not a directory.
*
* @see Unix stat()
*
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_stat(const char *url, struct stat *st);
#ifdef __cplusplus
}
#endif
/**@ingroup attribute
* Get file information via an file descriptor.
*
* @param fd Open file handle from smbc_open() or smbc_creat()
*
* @param st pointer to a buffer that will be filled with
* standard Unix struct stat information.
*
* @return EBADF filedes is bad.
* - EACCES Permission denied.
* - EBADF fd is not a valid file descriptor
* - EINVAL Problems occurred in the underlying routines
* or smbc_init not called.
* - ENOMEM Out of memory
*
* @see smbc_stat(), Unix stat()
*
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_fstat(int fd, struct stat *st);
#ifdef __cplusplus
}
#endif
/**@ingroup attribue
* Change the ownership of a file or directory.
*
* @param url The smb url of the file or directory to change
* ownership of.
*
* @param owner I have no idea?
*
* @param group I have not idea?
*
* @return 0 on success, < 0 on error with errno set:
* - EPERM The effective UID does not match the owner
* of the file, and is not zero; or the owner or group
* were specified incorrectly.
* - ENOENT The file does not exist.
* - ENOMEM Insufficient was available.
* - ENOENT file or directory does not exist
*
* @todo Are we actually going to be able to implement this function
*
* @todo How do we abstract owner and group uid and gid?
*
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_chown(const char *url, uid_t owner, gid_t group);
#ifdef __cplusplus
}
#endif
/**@ingroup attribute
* Change the permissions of a file.
*
* @param url The smb url of the file or directory to change
* permissions of
*
* @param mode The permissions to set:
* - Put good explaination of permissions here!
*
* @return 0 on success, < 0 on error with errno set:
* - EPERM The effective UID does not match the owner
* of the file, and is not zero
* - ENOENT The file does not exist.
* - ENOMEM Insufficient was available.
* - ENOENT file or directory does not exist
*
* @todo Actually implement this fuction?
*
* @todo Are errno values complete and correct?
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_chmod(const char *url, mode_t mode);
#ifdef __cplusplus
}
#endif
/**@ingroup attribute
* Change the last modification time on a file
*
* @param url The smb url of the file or directory to change
* the modification time of
*
* @param tbuf A timeval structure which contains the desired
* modification time. NOTE: Only the tv_sec field is
* used. The tv_usec (microseconds) portion is ignored.
*
* @return 0 on success, < 0 on error with errno set:
* - EINVAL The client library is not properly initialized
* - EPERM Permission was denied.
*
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_utimes(const char *url, struct timeval *tbuf);
#ifdef __cplusplus
}
#endif
#ifdef HAVE_UTIME_H
/**@ingroup attribute
* Change the last modification time on a file
*
* @param url The smb url of the file or directory to change
* the modification time of
*
* @param utbuf A utimebuf structure which contains the desired
* modification time. NOTE: Although the structure contains
* an access time as well, the access time value is ignored.
*
* @return 0 on success, < 0 on error with errno set:
* - EINVAL The client library is not properly initialized
* - ENOMEM No memory was available for internal needs
* - EPERM Permission was denied.
*
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_utime(const char *fname, struct utimbuf *utbuf);
#ifdef __cplusplus
}
#endif
#endif
/**@ingroup attribute
* Set extended attributes for a file. This is used for modifying a file's
* security descriptor (i.e. owner, group, and access control list)
*
* @param url The smb url of the file or directory to set extended
* attributes for.
*
* @param name The name of an attribute to be changed. Names are of
* one of the following forms:
*
* system.nt_sec_desc.<attribute name>
* system.nt_sec_desc.*
* system.nt_sec_desc.*+
*
* where <attribute name> is one of:
*
* revision
* owner
* owner+
* group
* group+
* acl:<name or sid>
* acl+:<name or sid>
*
* In the forms "system.nt_sec_desc.*" and
* "system.nt_sec_desc.*+", the asterisk and plus signs are
* literal, i.e. the string is provided exactly as shown, and
* the value parameter should contain a complete security
* descriptor with name:value pairs separated by tabs,
* commas, or newlines (not spaces!).
*
* The plus sign ('+') indicates that SIDs should be mapped
* to names. Without the plus sign, SIDs are not mapped;
* rather they are simply converted to a string format.
*
* @param value The value to be assigned to the specified attribute name.
* This buffer should contain only the attribute value if the
* name was of the "system.nt_sec_desc.<attribute_name>"
* form. If the name was of the "system.nt_sec_desc.*" form
* then a complete security descriptor, with name:value pairs
* separated by tabs, commas, or newlines (not spaces!),
* should be provided in this value buffer. A complete
* security descriptor will contain one or more entries
* selected from the following:
*
* REVISION:<revision number>
* OWNER:<sid or name>
* GROUP:<sid or name>
* ACL:<sid or name>:<type>/<flags>/<mask>
*
* The revision of the ACL specifies the internal Windows NT
* ACL revision for the security descriptor. If not specified
* it defaults to 1. Using values other than 1 may cause
* strange behaviour.
*
* The owner and group specify the owner and group sids for
* the object. If the attribute name (either '*+' with a
* complete security descriptor, or individual 'owner+' or
* 'group+' attribute names) ended with a plus sign, the
* specified name is resolved to a SID value, using the
* server on which the file or directory resides. Otherwise,
* the value should be provided in SID-printable format as
* S-1-x-y-z, and is used directly. The <sid or name>
* associated with the ACL: attribute should be provided
* similarly.
*
* @param size The number of the bytes of data in the value buffer
*
* @param flags A bit-wise OR of zero or more of the following:
* SMBC_XATTR_FLAG_CREATE -
* fail if the named attribute already exists
* SMBC_XATTR_FLAG_REPLACE -
* fail if the attribute does not already exist
*
* If neither flag is specified, the specified attributes
* will be added or replace existing attributes of the same
* name, as necessary.
*
* @return 0 on success, < 0 on error with errno set:
* - EINVAL The client library is not properly initialized
* or one of the parameters is not of a correct
* form
* - ENOMEM No memory was available for internal needs
* - EEXIST If the attribute already exists and the flag
* SMBC_XATTR_FLAG_CREAT was specified
* - ENOATTR If the attribute does not exist and the flag
* SMBC_XATTR_FLAG_REPLACE was specified
* - EPERM Permission was denied.
* - ENOTSUP The referenced file system does not support
* extended attributes
*
* @note Attribute names are compared in a case-insensitive
* fashion. All of the following are equivalent, although
* the all-lower-case name is the preferred format:
* system.nt_sec_desc.owner
* SYSTEM.NT_SEC_DESC.OWNER
* sYsTeM.nt_sEc_desc.owNER
*
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_setxattr(const char *url,
const char *name,
const void *value,
size_t size,
int flags);
#ifdef __cplusplus
}
#endif
/**@ingroup attribute
* Set extended attributes for a file. This is used for modifying a file's
* security descriptor (i.e. owner, group, and access control list). The
* POSIX function which this maps to would act on a symbolic link rather than
* acting on what the symbolic link points to, but with no symbolic links in
* SMB file systems, this function is functionally identical to
* smbc_setxattr().
*
* @param url The smb url of the file or directory to set extended
* attributes for.
*
* @param name The name of an attribute to be changed. Names are of
* one of the following forms:
*
* system.nt_sec_desc.<attribute name>
* system.nt_sec_desc.*
* system.nt_sec_desc.*+
*
* where <attribute name> is one of:
*
* revision
* owner
* owner+
* group
* group+
* acl:<name or sid>
* acl+:<name or sid>
*
* In the forms "system.nt_sec_desc.*" and
* "system.nt_sec_desc.*+", the asterisk and plus signs are
* literal, i.e. the string is provided exactly as shown, and
* the value parameter should contain a complete security
* descriptor with name:value pairs separated by tabs,
* commas, or newlines (not spaces!).
*
* The plus sign ('+') indicates that SIDs should be mapped
* to names. Without the plus sign, SIDs are not mapped;
* rather they are simply converted to a string format.
*
* @param value The value to be assigned to the specified attribute name.
* This buffer should contain only the attribute value if the
* name was of the "system.nt_sec_desc.<attribute_name>"
* form. If the name was of the "system.nt_sec_desc.*" form
* then a complete security descriptor, with name:value pairs
* separated by tabs, commas, or newlines (not spaces!),
* should be provided in this value buffer. A complete
* security descriptor will contain one or more entries
* selected from the following:
*
* REVISION:<revision number>
* OWNER:<sid or name>
* GROUP:<sid or name>
* ACL:<sid or name>:<type>/<flags>/<mask>
*
* The revision of the ACL specifies the internal Windows NT
* ACL revision for the security descriptor. If not specified
* it defaults to 1. Using values other than 1 may cause
* strange behaviour.
*
* The owner and group specify the owner and group sids for
* the object. If the attribute name (either '*+' with a
* complete security descriptor, or individual 'owner+' or
* 'group+' attribute names) ended with a plus sign, the
* specified name is resolved to a SID value, using the
* server on which the file or directory resides. Otherwise,
* the value should be provided in SID-printable format as
* S-1-x-y-z, and is used directly. The <sid or name>
* associated with the ACL: attribute should be provided
* similarly.
*
* @param size The number of the bytes of data in the value buffer
*
* @param flags A bit-wise OR of zero or more of the following:
* SMBC_XATTR_FLAG_CREATE -
* fail if the named attribute already exists
* SMBC_XATTR_FLAG_REPLACE -
* fail if the attribute does not already exist
*
* If neither flag is specified, the specified attributes
* will be added or replace existing attributes of the same
* name, as necessary.
*
* @return 0 on success, < 0 on error with errno set:
* - EINVAL The client library is not properly initialized
* or one of the parameters is not of a correct
* form
* - ENOMEM No memory was available for internal needs
* - EEXIST If the attribute already exists and the flag
* SMBC_XATTR_FLAG_CREAT was specified
* - ENOATTR If the attribute does not exist and the flag
* SMBC_XATTR_FLAG_REPLACE was specified
* - EPERM Permission was denied.
* - ENOTSUP The referenced file system does not support
* extended attributes
*
* @note Attribute names are compared in a case-insensitive
* fashion. All of the following are equivalent, although
* the all-lower-case name is the preferred format:
* system.nt_sec_desc.owner
* SYSTEM.NT_SEC_DESC.OWNER
* sYsTeM.nt_sEc_desc.owNER
*
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_lsetxattr(const char *url,
const char *name,
const void *value,
size_t size,
int flags);
#ifdef __cplusplus
}
#endif
/**@ingroup attribute
* Set extended attributes for a file. This is used for modifying a file's
* security descriptor (i.e. owner, group, and access control list)
*
* @param fd A file descriptor associated with an open file (as
* previously returned by smbc_open(), to get extended
* attributes for.
*
* @param name The name of an attribute to be changed. Names are of
* one of the following forms:
*
* system.nt_sec_desc.<attribute name>
* system.nt_sec_desc.*
* system.nt_sec_desc.*+
*
* where <attribute name> is one of:
*
* revision
* owner
* owner+
* group
* group+
* acl:<name or sid>
* acl+:<name or sid>
*
* In the forms "system.nt_sec_desc.*" and
* "system.nt_sec_desc.*+", the asterisk and plus signs are
* literal, i.e. the string is provided exactly as shown, and
* the value parameter should contain a complete security
* descriptor with name:value pairs separated by tabs,
* commas, or newlines (not spaces!).
*
* The plus sign ('+') indicates that SIDs should be mapped
* to names. Without the plus sign, SIDs are not mapped;
* rather they are simply converted to a string format.
*
* @param value The value to be assigned to the specified attribute name.
* This buffer should contain only the attribute value if the
* name was of the "system.nt_sec_desc.<attribute_name>"
* form. If the name was of the "system.nt_sec_desc.*" form
* then a complete security descriptor, with name:value pairs
* separated by tabs, commas, or newlines (not spaces!),
* should be provided in this value buffer. A complete
* security descriptor will contain one or more entries
* selected from the following:
*
* REVISION:<revision number>
* OWNER:<sid or name>
* GROUP:<sid or name>
* ACL:<sid or name>:<type>/<flags>/<mask>
*
* The revision of the ACL specifies the internal Windows NT
* ACL revision for the security descriptor. If not specified
* it defaults to 1. Using values other than 1 may cause
* strange behaviour.
*
* The owner and group specify the owner and group sids for
* the object. If the attribute name (either '*+' with a
* complete security descriptor, or individual 'owner+' or
* 'group+' attribute names) ended with a plus sign, the
* specified name is resolved to a SID value, using the
* server on which the file or directory resides. Otherwise,
* the value should be provided in SID-printable format as
* S-1-x-y-z, and is used directly. The <sid or name>
* associated with the ACL: attribute should be provided
* similarly.
*
* @param size The number of the bytes of data in the value buffer
*
* @param flags A bit-wise OR of zero or more of the following:
* SMBC_XATTR_FLAG_CREATE -
* fail if the named attribute already exists
* SMBC_XATTR_FLAG_REPLACE -
* fail if the attribute does not already exist
*
* If neither flag is specified, the specified attributes
* will be added or replace existing attributes of the same
* name, as necessary.
*
* @return 0 on success, < 0 on error with errno set:
* - EINVAL The client library is not properly initialized
* or one of the parameters is not of a correct
* form
* - ENOMEM No memory was available for internal needs
* - EEXIST If the attribute already exists and the flag
* SMBC_XATTR_FLAG_CREAT was specified
* - ENOATTR If the attribute does not exist and the flag
* SMBC_XATTR_FLAG_REPLACE was specified
* - EPERM Permission was denied.
* - ENOTSUP The referenced file system does not support
* extended attributes
*
* @note Attribute names are compared in a case-insensitive
* fashion. All of the following are equivalent, although
* the all-lower-case name is the preferred format:
* system.nt_sec_desc.owner
* SYSTEM.NT_SEC_DESC.OWNER
* sYsTeM.nt_sEc_desc.owNER
*
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_fsetxattr(int fd,
const char *name,
const void *value,
size_t size,
int flags);
#ifdef __cplusplus
}
#endif
/**@ingroup attribute
* Get extended attributes for a file.
*
* @param url The smb url of the file or directory to get extended
* attributes for.
*
* @param name The name of an attribute to be retrieved. Names are of
* one of the following forms:
*
* system.nt_sec_desc.<attribute name>
* system.nt_sec_desc.*
* system.nt_sec_desc.*+
*
* where <attribute name> is one of:
*
* revision
* owner
* owner+
* group
* group+
* acl:<name or sid>
* acl+:<name or sid>
*
* In the forms "system.nt_sec_desc.*" and
* "system.nt_sec_desc.*+", the asterisk and plus signs are
* literal, i.e. the string is provided exactly as shown, and
* the value parameter will return a complete security
* descriptor with name:value pairs separated by tabs,
* commas, or newlines (not spaces!).
*
* The plus sign ('+') indicates that SIDs should be mapped
* to names. Without the plus sign, SIDs are not mapped;
* rather they are simply converted to a string format.
*
* @param value A pointer to a buffer in which the value of the specified
* attribute will be placed (unless size is zero).
*
* @param size The size of the buffer pointed to by value. This parameter
* may also be zero, in which case the size of the buffer
* required to hold the attribute value will be returned,
* but nothing will be placed into the value buffer.
*
* @return 0 on success, < 0 on error with errno set:
* - EINVAL The client library is not properly initialized
* or one of the parameters is not of a correct
* form
* - ENOMEM No memory was available for internal needs
* - EEXIST If the attribute already exists and the flag
* SMBC_XATTR_FLAG_CREAT was specified
* - ENOATTR If the attribute does not exist and the flag
* SMBC_XATTR_FLAG_REPLACE was specified
* - EPERM Permission was denied.
* - ENOTSUP The referenced file system does not support
* extended attributes
*
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_getxattr(const char *url,
const char *name,
const void *value,
size_t size);
#ifdef __cplusplus
}
#endif
/**@ingroup attribute
* Get extended attributes for a file. The POSIX function which this maps to
* would act on a symbolic link rather than acting on what the symbolic link
* points to, but with no symbolic links in SMB file systems, this function
* is functionally identical to smbc_getxattr().
*
* @param url The smb url of the file or directory to get extended
* attributes for.
*
* @param name The name of an attribute to be retrieved. Names are of
* one of the following forms:
*
* system.nt_sec_desc.<attribute name>
* system.nt_sec_desc.*
* system.nt_sec_desc.*+
*
* where <attribute name> is one of:
*
* revision
* owner
* owner+
* group
* group+
* acl:<name or sid>
* acl+:<name or sid>
*
* In the forms "system.nt_sec_desc.*" and
* "system.nt_sec_desc.*+", the asterisk and plus signs are
* literal, i.e. the string is provided exactly as shown, and
* the value parameter will return a complete security
* descriptor with name:value pairs separated by tabs,
* commas, or newlines (not spaces!).
*
* The plus sign ('+') indicates that SIDs should be mapped
* to names. Without the plus sign, SIDs are not mapped;
* rather they are simply converted to a string format.
*
* @param value A pointer to a buffer in which the value of the specified
* attribute will be placed (unless size is zero).
*
* @param size The size of the buffer pointed to by value. This parameter
* may also be zero, in which case the size of the buffer
* required to hold the attribute value will be returned,
* but nothing will be placed into the value buffer.
*
* @return 0 on success, < 0 on error with errno set:
* - EINVAL The client library is not properly initialized
* or one of the parameters is not of a correct
* form
* - ENOMEM No memory was available for internal needs
* - EEXIST If the attribute already exists and the flag
* SMBC_XATTR_FLAG_CREAT was specified
* - ENOATTR If the attribute does not exist and the flag
* SMBC_XATTR_FLAG_REPLACE was specified
* - EPERM Permission was denied.
* - ENOTSUP The referenced file system does not support
* extended attributes
*
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_lgetxattr(const char *url,
const char *name,
const void *value,
size_t size);
#ifdef __cplusplus
}
#endif
/**@ingroup attribute
* Get extended attributes for a file.
*
* @param fd A file descriptor associated with an open file (as
* previously returned by smbc_open(), to get extended
* attributes for.
*
* @param name The name of an attribute to be retrieved. Names are of
* one of the following forms:
*
* system.nt_sec_desc.<attribute name>
* system.nt_sec_desc.*
* system.nt_sec_desc.*+
*
* where <attribute name> is one of:
*
* revision
* owner
* owner+
* group
* group+
* acl:<name or sid>
* acl+:<name or sid>
*
* In the forms "system.nt_sec_desc.*" and
* "system.nt_sec_desc.*+", the asterisk and plus signs are
* literal, i.e. the string is provided exactly as shown, and
* the value parameter will return a complete security
* descriptor with name:value pairs separated by tabs,
* commas, or newlines (not spaces!).
*
* The plus sign ('+') indicates that SIDs should be mapped
* to names. Without the plus sign, SIDs are not mapped;
* rather they are simply converted to a string format.
*
* @param value A pointer to a buffer in which the value of the specified
* attribute will be placed (unless size is zero).
*
* @param size The size of the buffer pointed to by value. This parameter
* may also be zero, in which case the size of the buffer
* required to hold the attribute value will be returned,
* but nothing will be placed into the value buffer.
*
* @return 0 on success, < 0 on error with errno set:
* - EINVAL The client library is not properly initialized
* or one of the parameters is not of a correct
* form
* - ENOMEM No memory was available for internal needs
* - EEXIST If the attribute already exists and the flag
* SMBC_XATTR_FLAG_CREAT was specified
* - ENOATTR If the attribute does not exist and the flag
* SMBC_XATTR_FLAG_REPLACE was specified
* - EPERM Permission was denied.
* - ENOTSUP The referenced file system does not support
* extended attributes
*
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_fgetxattr(int fd,
const char *name,
const void *value,
size_t size);
#ifdef __cplusplus
}
#endif
/**@ingroup attribute
* Remove extended attributes for a file. This is used for modifying a file's
* security descriptor (i.e. owner, group, and access control list)
*
* @param url The smb url of the file or directory to remove the extended
* attributes for.
*
* @param name The name of an attribute to be removed. Names are of
* one of the following forms:
*
* system.nt_sec_desc.<attribute name>
* system.nt_sec_desc.*
* system.nt_sec_desc.*+
*
* where <attribute name> is one of:
*
* revision
* owner
* owner+
* group
* group+
* acl:<name or sid>
* acl+:<name or sid>
*
* In the forms "system.nt_sec_desc.*" and
* "system.nt_sec_desc.*+", the asterisk and plus signs are
* literal, i.e. the string is provided exactly as shown, and
* the value parameter will return a complete security
* descriptor with name:value pairs separated by tabs,
* commas, or newlines (not spaces!).
*
* The plus sign ('+') indicates that SIDs should be mapped
* to names. Without the plus sign, SIDs are not mapped;
* rather they are simply converted to a string format.
*
* @return 0 on success, < 0 on error with errno set:
* - EINVAL The client library is not properly initialized
* - ENOMEM No memory was available for internal needs
* - EPERM Permission was denied.
* - ENOTSUP The referenced file system does not support
* extended attributes
*
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_removexattr(const char *url,
const char *name);
#ifdef __cplusplus
}
#endif
/**@ingroup attribute
* Remove extended attributes for a file. This is used for modifying a file's
* security descriptor (i.e. owner, group, and access control list) The POSIX
* function which this maps to would act on a symbolic link rather than acting
* on what the symbolic link points to, but with no symbolic links in SMB file
* systems, this function is functionally identical to smbc_removexattr().
*
* @param url The smb url of the file or directory to remove the extended
* attributes for.
*
* @param name The name of an attribute to be removed. Names are of
* one of the following forms:
*
* system.nt_sec_desc.<attribute name>
* system.nt_sec_desc.*
* system.nt_sec_desc.*+
*
* where <attribute name> is one of:
*
* revision
* owner
* owner+
* group
* group+
* acl:<name or sid>
* acl+:<name or sid>
*
* In the forms "system.nt_sec_desc.*" and
* "system.nt_sec_desc.*+", the asterisk and plus signs are
* literal, i.e. the string is provided exactly as shown, and
* the value parameter will return a complete security
* descriptor with name:value pairs separated by tabs,
* commas, or newlines (not spaces!).
*
* The plus sign ('+') indicates that SIDs should be mapped
* to names. Without the plus sign, SIDs are not mapped;
* rather they are simply converted to a string format.
*
* @return 0 on success, < 0 on error with errno set:
* - EINVAL The client library is not properly initialized
* - ENOMEM No memory was available for internal needs
* - EPERM Permission was denied.
* - ENOTSUP The referenced file system does not support
* extended attributes
*
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_lremovexattr(const char *url,
const char *name);
#ifdef __cplusplus
}
#endif
/**@ingroup attribute
* Remove extended attributes for a file. This is used for modifying a file's
* security descriptor (i.e. owner, group, and access control list)
*
* @param fd A file descriptor associated with an open file (as
* previously returned by smbc_open(), to get extended
* attributes for.
*
* @param name The name of an attribute to be removed. Names are of
* one of the following forms:
*
* system.nt_sec_desc.<attribute name>
* system.nt_sec_desc.*
* system.nt_sec_desc.*+
*
* where <attribute name> is one of:
*
* revision
* owner
* owner+
* group
* group+
* acl:<name or sid>
* acl+:<name or sid>
*
* In the forms "system.nt_sec_desc.*" and
* "system.nt_sec_desc.*+", the asterisk and plus signs are
* literal, i.e. the string is provided exactly as shown, and
* the value parameter will return a complete security
* descriptor with name:value pairs separated by tabs,
* commas, or newlines (not spaces!).
*
* The plus sign ('+') indicates that SIDs should be mapped
* to names. Without the plus sign, SIDs are not mapped;
* rather they are simply converted to a string format.
*
* @return 0 on success, < 0 on error with errno set:
* - EINVAL The client library is not properly initialized
* - ENOMEM No memory was available for internal needs
* - EPERM Permission was denied.
* - ENOTSUP The referenced file system does not support
* extended attributes
*
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_fremovexattr(int fd,
const char *name);
#ifdef __cplusplus
}
#endif
/**@ingroup attribute
* List the supported extended attribute names associated with a file
*
* @param url The smb url of the file or directory to list the extended
* attributes for.
*
* @param list A pointer to a buffer in which the list of attributes for
* the specified file or directory will be placed (unless
* size is zero).
*
* @param size The size of the buffer pointed to by list. This parameter
* may also be zero, in which case the size of the buffer
* required to hold all of the attribute names will be
* returned, but nothing will be placed into the list buffer.
*
* @return 0 on success, < 0 on error with errno set:
* - EINVAL The client library is not properly initialized
* - ENOMEM No memory was available for internal needs
* - EPERM Permission was denied.
* - ENOTSUP The referenced file system does not support
* extended attributes
*
* @note This function always returns all attribute names supported
* by NT file systems, regardless of wether the referenced
* file system supports extended attributes (e.g. a Windows
* 2000 machine supports extended attributes if NTFS is used,
* but not if FAT is used, and Windows 98 doesn't support
* extended attributes at all. Whether this is a feature or
* a bug is yet to be decided.
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_listxattr(const char *url,
char *list,
size_t size);
#ifdef __cplusplus
}
#endif
/**@ingroup attribute
* List the supported extended attribute names associated with a file The
* POSIX function which this maps to would act on a symbolic link rather than
* acting on what the symbolic link points to, but with no symbolic links in
* SMB file systems, this function is functionally identical to
* smbc_listxattr().
*
* @param url The smb url of the file or directory to list the extended
* attributes for.
*
* @param list A pointer to a buffer in which the list of attributes for
* the specified file or directory will be placed (unless
* size is zero).
*
* @param size The size of the buffer pointed to by list. This parameter
* may also be zero, in which case the size of the buffer
* required to hold all of the attribute names will be
* returned, but nothing will be placed into the list buffer.
*
* @return 0 on success, < 0 on error with errno set:
* - EINVAL The client library is not properly initialized
* - ENOMEM No memory was available for internal needs
* - EPERM Permission was denied.
* - ENOTSUP The referenced file system does not support
* extended attributes
*
* @note This function always returns all attribute names supported
* by NT file systems, regardless of wether the referenced
* file system supports extended attributes (e.g. a Windows
* 2000 machine supports extended attributes if NTFS is used,
* but not if FAT is used, and Windows 98 doesn't support
* extended attributes at all. Whether this is a feature or
* a bug is yet to be decided.
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_llistxattr(const char *url,
char *list,
size_t size);
#ifdef __cplusplus
}
#endif
/**@ingroup attribute
* List the supported extended attribute names associated with a file
*
* @param fd A file descriptor associated with an open file (as
* previously returned by smbc_open(), to get extended
* attributes for.
*
* @param list A pointer to a buffer in which the list of attributes for
* the specified file or directory will be placed (unless
* size is zero).
*
* @param size The size of the buffer pointed to by list. This parameter
* may also be zero, in which case the size of the buffer
* required to hold all of the attribute names will be
* returned, but nothing will be placed into the list buffer.
*
* @return 0 on success, < 0 on error with errno set:
* - EINVAL The client library is not properly initialized
* - ENOMEM No memory was available for internal needs
* - EPERM Permission was denied.
* - ENOTSUP The referenced file system does not support
* extended attributes
*
* @note This function always returns all attribute names supported
* by NT file systems, regardless of wether the referenced
* file system supports extended attributes (e.g. a Windows
* 2000 machine supports extended attributes if NTFS is used,
* but not if FAT is used, and Windows 98 doesn't support
* extended attributes at all. Whether this is a feature or
* a bug is yet to be decided.
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_flistxattr(int fd,
char *list,
size_t size);
#ifdef __cplusplus
}
#endif
/**@ingroup print
* Print a file given the name in fname. It would be a URL ...
*
* @param fname The URL of a file on a remote SMB server that the
* caller wants printed
*
* @param printq The URL of the print share to print the file to.
*
* @return 0 on success, < 0 on error with errno set:
*
* - EINVAL fname or printq was NULL or smbc_init not
* not called.
* and errors returned by smbc_open
*
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_print_file(const char *fname, const char *printq);
#ifdef __cplusplus
}
#endif
/**@ingroup print
* Open a print file that can be written to by other calls. This simply
* does an smbc_open call after checking if there is a file name on the
* URI. If not, a temporary name is added ...
*
* @param fname The URL of the print share to print to?
*
* @returns A file handle for the print file if successful.
* Returns -1 if an error ocurred and errno has the values
* - EINVAL fname was NULL or smbc_init not called.
* - all errors returned by smbc_open
*
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_open_print_job(const char *fname);
#ifdef __cplusplus
}
#endif
/**@ingroup print
* List the print jobs on a print share, for the moment, pass a callback
*
* @param purl The url of the print share to list the jobs of
*
* @param fn Callback function the receives printjob info
*
* @return 0 on success, < 0 on error with errno set:
* - EINVAL fname was NULL or smbc_init not called
* - EACCES ???
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_list_print_jobs(const char *purl, smbc_list_print_job_fn fn);
#ifdef __cplusplus
}
#endif
/**@ingroup print
* Delete a print job
*
* @param purl Url of the print share
*
* @param id The id of the job to delete
*
* @return 0 on success, < 0 on error with errno set:
* - EINVAL fname was NULL or smbc_init not called
*
* @todo what errno values are possible here?
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_unlink_print_job(const char *purl, int id);
#ifdef __cplusplus
}
#endif
/**@ingroup callback
* Remove a server from the cached server list it's unused.
*
* @param context pointer to smb context
*
* @param srv pointer to server to remove
*
* @return On success, 0 is returned. 1 is returned if the server could not
* be removed. Also useable outside libsmbclient.
*/
#ifdef __cplusplus
extern "C" {
#endif
int smbc_remove_unused_server(SMBCCTX * context, SMBCSRV * srv);
#ifdef __cplusplus
}
#endif
/**@ingroup directory
* Convert strings of %xx to their single character equivalent.
*
* @param dest A pointer to a buffer in which the resulting decoded
* string should be placed. This may be a pointer to the
* same buffer as src_segment.
*
* @param src A pointer to the buffer containing the URL to be decoded.
* Any %xx sequences herein are converted to their single
* character equivalent. Each 'x' must be a valid hexadecimal
* digit, or that % sequence is left undecoded.
*
* @param max_dest_len
* The size of the buffer pointed to by dest_segment.
*
* @return The number of % sequences which could not be converted
* due to lack of two following hexadecimal digits.
*/
#ifdef __cplusplus
extern "C" {
#endif
int
smbc_urldecode(char *dest, char * src, size_t max_dest_len);
#ifdef __cplusplus
}
#endif
/*
* Convert any characters not specifically allowed in a URL into their %xx
* equivalent.
*
* @param dest A pointer to a buffer in which the resulting encoded
* string should be placed. Unlike smbc_urldecode(), this
* must be a buffer unique from src.
*
* @param src A pointer to the buffer containing the string to be encoded.
* Any character not specifically allowed in a URL is converted
* into its hexadecimal value and encoded as %xx.
*
* @param max_dest_len
* The size of the buffer pointed to by dest_segment.
*
* @returns The remaining buffer length.
*/
#ifdef __cplusplus
extern "C" {
#endif
int
smbc_urlencode(char * dest, char * src, int max_dest_len);
#ifdef __cplusplus
}
#endif
/**@ingroup directory
* Return the version of the linked Samba code, and thus the version of the
* libsmbclient code.
*
* @return The version string.
*/
#ifdef __cplusplus
extern "C" {
#endif
const char *
smbc_version(void);
#ifdef __cplusplus
}
#endif
#endif /* SMBCLIENT_H_INCLUDED */
|