summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin
Commit message (Collapse)AuthorAgeFilesLines
...
* *** empty log message ***Corinna Vinschen2015-02-121-0/+9
|
* * sec_acl.cc (setacl): Introduce bool array "invalid" to note theCorinna Vinschen2015-02-123-3/+16
| | | | invalidation of incoming acl entries while iterating over them.
* * cygheap.h (cygheap_pwdgrp::get_home): Add dnsdomain parameter toCorinna Vinschen2015-02-125-107/+206
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | declaration in ldap-related method. (cygheap_pwdgrp::get_shell): Ditto. (cygheap_pwdgrp::get_gecos): Ditto. * ldap.cc (cyg_ldap::open): Use NO_ERROR instead of 0. (cyg_ldap::close): Reset last_fetched_sid. (cyg_ldap::fetch_ad_account): Return immediately if sid is the same as last_fetched_sid. Open LDAP connection from here. Move initialization of rdse after open call. Set last_fetched_sid if LDAP call was successful. * ldap.h (class cyg_ldap): Add member last_fetched_sid. (cyg_ldap::cyg_ldap): Initialize last_fetched_sid. (cyg_ldap::is_open): New inline method. * uinfo.cc (cygheap_pwdgrp::init): Drop initialization of db_home, db_shell and db_gecos with "cygwin desc", thus only using the fallback by default. (fetch_windows_home): Add parameter dnsdomain. Call cyg_ldap::fetch_ad_account if required. (fetch_from_path): Add parameter dnsdomain. Call fetch_windows_home accordingly. (cygheap_pwdgrp::get_home): Accomodate call to fetch_windows_home. Add dnsdomain parameter in ldap-related method. Call cyg_ldap::fetch_ad_account if required. (cygheap_pwdgrp::get_shell): Ditto. (cygheap_pwdgrp::get_gecos): Ditto. (pwdgrp::fetch_account_from_windows): Drop cyg_ldap::open call prior to cyg_ldap::fetch_ad_account call. Set is_current_user to true if we're handling the current user account. Make sure to perform the LDAP calls only for users, and only if required.
* * flock.cc (fhandler_base::lock): Convert accidental system_printf toCorinna Vinschen2015-02-112-2/+7
| | | | debug_printf in case of non-matching file modes. Clear up debug output.
* * dlfcn.cc (check_path_access): Drop FE_NATIVE from find_exec call.Corinna Vinschen2015-02-117-102/+72
| | | | | | | | | | | | | | | | | | | | | (gfpod_helper): Drop equality sign from environment variable name in call to check_path_access. * exec.cc (execlp): Drop equality sign from environment variable name in call to find_exec. (execvp): Ditto. (execvpe): Ditto. * path.h (enum fe_types): Drop FE_NATIVE. (find_exec): Rename third paramter in declaration from search. Drop equality sign from default value. * spawn.cc (perhaps_suffix): Add PC_POSIX to path_conv::check call. (find_exec): Simplify function. Iterate over POSIX pathlist rather than Windows pathlist. Drop handling of FE_NATIVE flag. Always fill posix path of incoming path_conv buf, unless FE_NNF flag is given. (av::setup): Drop equality sign from environment variable name in call to find_exec. Call unshift with normalized_path. * winf.cc (av::unshift): Drop conv parameter and code converting Windows to POSIX path. * winf.h (av::unshift): Accommodate prototype.
* * syscalls.cc (fhandler_base::stat_fixup): Generate unique inode numberCorinna Vinschen2015-02-102-3/+19
| | | | for /dev/tty under all circumstances. Add to comment.
* *** empty log message ***Corinna Vinschen2015-02-061-0/+15
|
* * common.din: Export cabsl, cimagl, creall, finitel, hypotl, sqrtl.Corinna Vinschen2015-02-063-1/+13
| | | | * include/cygwin/version.h (CYGWIN_VERSION_API_MINOR): Bump.
* * include/cygwin/version.h (CYGWIN_VERSION_DLL_MINOR): Bump to 35.Corinna Vinschen2015-02-062-1/+5
|
* * fhandler_proc.cc (format_proc_cpuinfo): Enable multi-core fieldsCorinna Vinschen2015-02-062-2/+7
| | | | on Intel CPUs.
* * common.din (wcstold): Export.Corinna Vinschen2015-02-044-1/+10
| | | | * include/cygwin/version.h (CYGWIN_VERSION_API_MINOR): Bump.
* *** empty log message ***Corinna Vinschen2015-02-031-0/+2
|
* * mkvers.sh: Automate generating the copyright date in the versionCorinna Vinschen2015-02-033-4/+10
| | | | | resource. * winver.rc: Ditto.
* * Makefile.in (VERSION_OFILES): New variable containing object filesCorinna Vinschen2015-01-282-12/+18
| | | | | | | | with version information. Use throughout. (clean): Drop winver_stamp. (version.cc winver.o): Drop empty rule. (winver_stamp): Convert to rule targeting version.cc and winver.o directly. Drop touching winver_stamp. Fix typo.
* *** empty log message ***Corinna Vinschen2015-01-271-1/+1
|
* Fix entry headerCorinna Vinschen2015-01-241-1/+1
|
* * uname.cc (uname): Shorten "WOW64" to "WOW" to account for the newCorinna Vinschen2015-01-242-2/+7
| | | | Windows 10 OS version "10.0" starting with preview build 9926.
* *** empty log message ***Corinna Vinschen2015-01-231-0/+3
|
* * net.cc (cygwin_inet_pton): Declare.Corinna Vinschen2015-01-232-7/+120
| | | | | | (gethostby_specials): New function. (gethostby_helper): Change returned addrtype in 4-to-6 case. (gethostbyname2): Call gethostby_specials.
* * fhandler.h (class fhandler_process): Add fd_type member.Corinna Vinschen2015-01-225-12/+78
| | | | | | | | | | | | | | | | | * fhandler_process.cc (process_tab): Fix indentation. (fhandler_process::exists): Rely on format_process_fd returning file type in fd_type. (struct process_fd_t): Add fd_type member. (fhandler_process::fill_filebuf): Allow format_process_fd to set this->fd_type member. (format_process_fd): Fix path evaluation to allow recognizing trailing path components. Fix check for file descriptor path component. Return virt_symlink in fd_type if no trailing path compenents exist, return virt_fsdir otherwise and copy full resulting path into destbuf. * path.cc (path_conv::check): If /proc/$PID/fd symlink has trailing path components, reparse resulting path as if it's the incoming path. Add comment to wail over the outdated and hackish check method, and to explain what we do here.
* * uinfo.cc (pwdgrp::fetch_account_from_windows): Allow fetching gid,Corinna Vinschen2015-01-212-21/+56
| | | | home, shell and gecos info from NT4 domain.
* * sec_auth.cc (get_logon_server): Constify domain parameter.Corinna Vinschen2015-01-213-4/+9
| | | | * security.h (get_logon_server): Same in prototype.
* * common.din (sockatmark): Export.Corinna Vinschen2015-01-205-3/+27
| | | | | * net.cc (sockatmark): New function. * include/cygwin/version.h (CYGWIN_VERSION_API_MINOR): Bump.
* *** empty log message ***Corinna Vinschen2015-01-201-0/+6
|
* * cygserver_ipc.h (ipc_retval): Add default constructor.Corinna Vinschen2015-01-192-2/+23
| | | | | | (class thread): struct->class. Add prototypes for new private methods dup_signal_arrived and close_signal_arrived. Implement constructor and destructor.
* * gendef: Export _sigbe on 64 bit as well.Corinna Vinschen2015-01-165-9/+44
| | | | | | | | | | | | * malloc_wrapper.cc (free): In malloc_printf, call caller_return_address instead of __builtin_return_address. (malloc): Ditto. (realloc): Ditto. (calloc): Ditto. * miscfuncs.cc (__caller_return_address): New function. * miscfuncs.h (caller_return_address): New macro calling __caller_return_address. (__caller_return_address): Add prototype.
* *** empty log message ***Corinna Vinschen2015-01-141-0/+3
|
* * uinfo.cc (fetch_windows_home): Disable fetching from homeDrive orCorinna Vinschen2015-01-142-1/+14
| | | | usri3_home_dir_drive. Add comment.
* * environ.cc (renv_arr): Drop variables not usually in a WindowsCorinna Vinschen2015-01-142-22/+14
| | | | | environment and all variables being uppercase anyway. But keep TMP and TEMP for paranoia.
* * environ.cc (build_env): When merging the user's Windows environment,Corinna Vinschen2015-01-142-3/+25
| | | | | explicitely skip the variables needing conversion to avoid collisions. Extend comment to explain.
* * uinfo.cc (pwdgrp::fetch_account_from_windows): Drop code fromCorinna Vinschen2015-01-132-16/+15
| | | | | | 2014-11-17, always prepending domain to NT SERVICE accounts when searching by name. Fix test expression to allow fully qualified names for NT SERVICE accounts. Extend comment to explain a bit.
* copyright fixCorinna Vinschen2015-01-131-1/+1
|
* * minires-os-if.c (cygwin_query): Change questions into answers.Corinna Vinschen2015-01-122-0/+11
|
* * cygheap.h (cygheap_pwdgrp::get_shell): Add sid to argument list.Corinna Vinschen2015-01-083-42/+84
| | | | | | | | | | | | | | | (cygheap_pwdgrp::get_gecos): Ditto. * uinfo.cc (fetch_windows_home): Accept cyg_ldap and PUSER_INFO_3 arguments, and fetch db home dir values right here. (fetch_from_path): Accept cyg_ldap, PUSER_INFO_3 pointers and sid arguments. Add '%H' format specifier to fetch Windows home dir in POSIX notation. (cygheap_pwdgrp::get_home): Accommodate changes to fetch_windows_home and fetch_from_path. (cygheap_pwdgrp::get_shell): Ditto. (cygheap_pwdgrp::get_gecos): Ditto. (pwdgrp::fetch_account_from_windows): Accommodate sid argument to cygheap_pwdgrp::get_shell and cygheap_pwdgrp::get_gecos.
* *** empty log message ***Corinna Vinschen2015-01-081-0/+9
|
* * include/cygwin/socket.h (struct cmsghdr): Redefine cmsg_len as typeCorinna Vinschen2015-01-082-2/+10
| | | | size_t. Add comment to explain why.
* * localtime.cc (__cygwin_gettzoffset): New function for access fromCorinna Vinschen2015-01-082-0/+31
| | | | | newlib. (__cygwin_gettzname): Ditto.
* * localtime.cc (tzload): Fix loading latest timezone offsets intoCorinna Vinschen2015-01-073-2747/+2769
| | | | | | tzinfo from zoneinfo files. Add comment to explain what we do. (tzparse): Add more comments to explain in case of loading timezone offset from other sources.
* * common.din (__fbufsize, __flbf, __fpending, __freadable, __freading,Yaakov Selkowitz2014-12-184-1/+56
| | | | | | | | | | __fsetlocking, __fwritable, __fwriting, clearerr_unlocked, feof_unlocked, ferror_unlocked, fflush_unlocked, fgetc_unlocked, fgets_unlocked, fgetwc_unlocked, fgetws_unlocked, fileno_unlocked, fputc_unlocked, fputs_unlocked, fputwc_unlocked, fputws_unlocked, fread_unlocked, fwrite_unlocked, getwc_unlocked, getwchar_unlocked, putwc_unlocked, putwchar_unlocked): Export. * include/cygwin/version.h (CYGWIN_VERSION_API_MINOR): Bump.
* * path.cc (find_fast_cwd): Point to problem reporting web site ratherCorinna Vinschen2014-12-162-2/+7
| | | | than to mailing list.
* * path.cc (warn_msdos): Slightly reformat.Corinna Vinschen2014-12-162-9/+21
| | | | | (find_fast_cwd): Change warning message to urge an update before reporting the problem.
* *** empty log message ***Corinna Vinschen2014-12-151-0/+3
|
* * winver.rc (LegalCopyright): Fix belatedly (uh-oh).Corinna Vinschen2014-12-102-1/+5
|
* * environ.cc (regopt): Remove function.Corinna Vinschen2014-12-083-44/+9
| | | | | | (environ_init): Drop undocumented feature to read application-specific environment variables from the registry. * include/cygwin/version.h (CYGWIN_INFO_PROGRAM_OPTIONS_NAME): Remove.
* * environ.cc (build_env): Remove loquacious debug statements.Corinna Vinschen2014-12-062-2/+4
|
* * common.din (__bsd_qsort_r): Add.Yaakov Selkowitz2014-12-053-1/+10
| | | | | (qsort_r): Add. * include/cygwin/version.h (CYGWIN_VERSION_API_MINOR): Bump.
* *** empty log message ***Corinna Vinschen2014-12-031-0/+18
|
* Revert accidental checkinCorinna Vinschen2014-12-021-1/+0
|
* * flock.cc (create_lock_in_parent): Make lf_obj handle inheritable.Corinna Vinschen2014-12-023-2/+19
| | | | | | | Explain why. (lockf_t::create_lock_obj): Use FALSE, rather than 0 for BOOL argument. (lockf_t::del_lock_obj): Check if NtSetEvent succeeded and print system message if not.
* * uinfo.cc (fetch_windows_home): New function fetching Windows-compliantCorinna Vinschen2014-12-023-14/+57
| | | | | | | | | | | home directory. Include longish comment to explain what we're doing. (cygheap_pwdgrp::get_home): Take additional sid parameter. In NSS_SCHEME_WINDOWS case, call fetch_windows_home to create home directory. (pwdgrp::fetch_account_from_windows): Call cygheap_pwdgrp::get_home with additional sid argument. * cygheap.h (cygheap_pwdgrp::get_home): Align declaration to above change.